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
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 4 days ago.
Improve this question
I am trying to install Python modules as suggested in this web scraping project on GitHub
GitHub-rpscrape
https://github.com/joenano/rpscrape
I've never worked with Python before so don't know what is going on. Initally I though my installation was in the wrong place being in AppData folder (dont ask me why), so reinstalled it to programFiles, but still facing the same issue.
When I try and run the first command in the ReadMe.md file:
~$ pip3 install requests tomli orjson aiohttp lxml
I get the following;
SyntaxError: invalid syntax
>>> ~$ pip3 install requests tomli orjson aiohttp lxml
File "<stdin>", line 1
~$ pip3 install requests tomli orjson aiohttp lxml
^
SyntaxError: invalid syntax
I have ensured I have PIP installed but my lack of Python knowledge leaves me clueless as to why it doesn't like $.
If I try removing ~$ then it doeesn't like 'install'. Invalid Syntax!
And I am assuming I am supposed to run these commands in Python, and not Windows CMD? Although both dont like ~$.
Any help appreciated at this point. Thanks
TIA
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
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 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.