Fail to install by pip
See original GitHub issueI’m running the command below on a vagrant machine (with debian powered)
(MY_ENV)vagrant@machine:/srv/www/<MY_PROJECT>$ pip install PyVimeo
Downloading/unpacking PyVimeo
Downloading PyVimeo-0.3.0.macosx-10.10-intel.tar.gz
Running setup.py egg_info for package PyVimeo
Traceback (most recent call last):
File "<string>", line 14, in <module>
IOError: [Errno 2] No such file or directory: '/srv/env/<MY_PROJECT>/build/PyVimeo/setup.py'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 14, in <module>
IOError: [Errno 2] No such file or directory: '/srv/env/<MY_PROJECT>/build/PyVimeo/setup.py'
----------------------------------------
Command python setup.py egg_info failed with error code 1 in /srv/env/<MY_PROJECT>/build/PyVimeo
Storing complete log in /home/vagrant/.pip/pip.log
But, if i run this command:
pip install https://github.com/vimeo/vimeo.py/archive/master.zip
it’s works fine.
Issue Analytics
- State:
- Created 8 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to install modules with PIP (and fix it when it fails) - Medium
Assuming that, the first thing to do is to check if the module exists. The main way to do this is to go...
Read more >pip fails to install anything, error: invalid command 'egg_info'
This is when I began to have problems installing packages with pip. sudo pip install -vvv pygoogle. Will output the following:
Read more >How to Install Pip on Windows - ActiveState
Open up the Control Panel and navigate to System and Security -> System; Click on the Advanced system settings link on the left...
Read more >Problem with "pip install" - Python Help
If you get an error with the pip install, first confirm pip is actually using the pip in your Anaconda env; pip --version...
Read more >Pip install fails | Apple Developer Forums
Pip install fails · 1) apparently successful install of beta · 2) xcode command line tools installed via terminal · 3) python -V...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Upgrading setuptools the problem is solved. This link helped me http://stackoverflow.com/questions/20950295/pip-install-error-unknown-archive-format-whl
For me, the problem has been solved. Thanks you very much for your help 😉
Excellent!