Skip to content

Instantly share code, notes, and snippets.

@ipmb
Last active April 12, 2018 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ipmb/2332d9bd3d6a70ab509f276fa346d534 to your computer and use it in GitHub Desktop.
Save ipmb/2332d9bd3d6a70ab509f276fa346d534 to your computer and use it in GitHub Desktop.
$ time python setup.py bdist_wheel > /dev/null
warning: build_py: byte-compiling is disabled, skipping.
warning: install_lib: byte-compiling is disabled, skipping.
real 0m0.922s
user 0m0.664s
sys 0m0.236s
$ time pip install --no-deps dist/saltdash-0.1-py3-none-any.whl
Processing ./dist/saltdash-0.1-py3-none-any.whl
Installing collected packages: saltdash
Successfully installed saltdash-0.1
real 0m0.855s
user 0m0.600s
sys 0m0.229s
$ pip --version
pip 10.0.0b2 from /Users/pete/.virtualenvs/saltdash-apCx4VH9/lib/python3.6/site-packages/pip (python 3.6)
$ pip uninstall -y saltdash
Uninstalling saltdash-0.1:
Successfully uninstalled saltdash-0.1
(saltdash-apCx4VH9) bash-3.2$ time pip install --no-deps .
Processing /Users/pete/projects/saltdash
Installing build dependencies ... done
Building wheels for collected packages: saltdash
Running setup.py bdist_wheel for saltdash ... done
Stored in directory: /private/var/folders/nw/7ftbjmn50y9fy047fgyv4c3r0000gn/T/pip-ephem-wheel-cache-0ti_m5mj/wheels/00/ca/fc/01dc112d8ab10e598bb1766fde9c5eb2f064b9426ff9912061
Successfully built saltdash
Installing collected packages: saltdash
Successfully installed saltdash-0.1
real 0m5.185s
user 0m3.662s
sys 0m1.109s
$ pip --version
pip 10.0.0b2 from /Users/pete/.virtualenvs/saltdash-apCx4VH9/lib/python3.6/site-packages/pip (python 3.6)
$ time pip install --no-deps .
Processing /Users/pete/projects/saltdash
Installing build dependencies ... done
Building wheels for collected packages: saltdash
Running setup.py bdist_wheel for saltdash ... done
Stored in directory: /private/var/folders/nw/7ftbjmn50y9fy047fgyv4c3r0000gn/T/pip-ephem-wheel-cache-vfbreebi/wheels/00/ca/fc/01dc112d8ab10e598bb1766fde9c5eb2f064b9426ff9912061
Successfully built saltdash
Installing collected packages: saltdash
Successfully installed saltdash-0.1
real 0m10.811s
user 0m5.517s
sys 0m4.536s
$ pip --version
pip 9.0.3 from /Users/pete/.virtualenvs/saltdash-apCx4VH9/lib/python3.6/site-packages (python 3.6)
$ time pip install --no-deps .
Processing /Users/pete/projects/saltdash
Installing collected packages: saltdash
Running setup.py install for saltdash ... done
Successfully installed saltdash-0.1
real 0m1.891s
user 0m1.324s
sys 0m0.529s
$ pip --version
pip 9.0.3 from /Users/pete/.virtualenvs/saltdash-apCx4VH9/lib/python3.6/site-packages (python 3.6)
$ pip uninstall -y saltdash
Uninstalling saltdash-0.1:
Successfully uninstalled saltdash-0.1
(saltdash-apCx4VH9) bash-3.2$ time pip install --no-deps .
Processing /Users/pete/projects/saltdash
Installing collected packages: saltdash
Running setup.py install for saltdash ... done
Successfully installed saltdash-0.1
real 0m7.616s
user 0m3.201s
sys 0m3.930s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment