Installing scipy from wheel [closed] - python

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.

Related

Python imports a different version of the library [closed]

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 5 months ago.
Improve this question
I am trying to import scikit-learn version 1.1.2 from my environment, however it imports another version (0.24.2) when I try.
The code is below:
import sklearn
print(sklearn.__version__)
-------
output: 0.24.2
I checked my environment from both pip commands and site-packages. I have the 1.1.2 version of scikit-learn. Tried to uninstall and install it again, doesn't work. When 1.1.2 version is not installed, python still imports 0.24.2 version from somewhere else I think.
How to import 1.1.2 version, and delete 0.24.2 version if I don't need it?
Also, how will I know if I need that 0.24.2 version?
I restarted my kernel and it is fixed. Now, I can import 1.1.2 version. I should have probably restart my kernel if I installed any libraries.

Unable to pip install virtualenv [closed]

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

Keras in pip not installing [closed]

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 2 years ago.
Improve this question
C:\Users\Hp>pip install keras
Using cached Keras-2.4.3-py2.py3-none-any.whl (36 kB)
Loading library to get version: hdf5.dll
error: Unable to load dependency HDF5, make sure HDF5 is installed properly
error: Could not find module 'hdf5.dll' (or one of its dependencies). Try using the full path with constructor syntax.
----------------------------------------
ERROR: Failed building wheel for h5py
Failed to build h5py
ERROR: Could not build wheels for h5py which use PEP 517 and cannot be installed directly

Error installing requirements-test.txt on windows [closed]

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

How to install the Python-RSA 3.1.1 package in Python 3.2? [closed]

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.

Categories

Resources