Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 3 years ago.
Improve this question
I was trying to install "requirements-test.txt" after installing "requirements.txt" but it showed me errors:
1.ERROR: Command errored out with exit status 1
2.ERROR: Failed building wheel for requirements-test.txt
Can some one please help me on how to get rid of these errors.
The screenshot of error screen is attached underneath:
Error screenshot Link
You need to use -r to install from a requirements file
pip install -r requirements-test.txt
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
I was trying to install a virtual environment by the command:
pip install virtualenv
and I get:
Fatal error in launcher: Unable to create process using '"c:\program files\python37\python.exe" "C:\Program Files\Python37\Scripts\pip.exe" install virtualenv': The system cannot find the file specified.
I would like to hear if someone could help me.
This should work
python -m pip install virtualenv
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have tried pip, easy_install, pkg update, pkg install, and building from source and all have failed. All I want to do is be able to have python 3.5 run and I am getting desperate at this point.
Is your freeNAS server the kind that is built on Debian?
If so you can try:
sudo apt-get update
sudo apt-get install python3.5
See:
https://askubuntu.com/questions/682869/how-do-i-install-newer-python-versions-using-apt-get
If the above doesn't work, try posting here the output from these commands:
uname -a
cat /etc/issue
cat /proc/version
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I'm trying to install
scipy-0.16.1-cp33-none-win_amd64.whl
I got the error:
scipy-0.16.1-cp33-none-win_amd64.whl is not a supported wheel on this platform.
Following the advice from this question, I've tried changing 'win_amd64' to 'win32' (which doesn't work) and to 'any'. After changing the file name and running
pip install scipy-0.16.1-cp33-none-any.whl
I get:
Unpacking C:\python33\scipy-0.16.1-cp33-none-any.whl
Installing collected packages: scipy
Successfully installed scipy
Cleaning up...
However, scipy doesn't seem to be installed anywhere. Running python and trying
>>> import scipy
gives an error. I'm very confused and would appreciate help.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
So far I've tried these methods to install the package
pip install rsa andpython setup.py install
but it seems like I installed the one for python2.7.
How can I install the one for python3.2? Or convert the 2.x to 3.x?
Many thanks.
You simply specify the version you wish to use, e.g. python3 setup.py install.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I'm trying to install psycopg2, using pip, on Fedora.
I get the message:
"pg_config executable not found."
In ubuntu, this problem can be resolved by installing the libpq-dev and python-dev packages. There's no clear analogous solution in Fedora.
You are probably searching python-devel and postgresql-devel packages.