This question already has answers here:
ImportError: No module named requests
(33 answers)
Closed 4 months ago.
I'm using Spyder with Python 3.9 and Python 3.7 respectively on Mac and Windows and I got the same issue.
I'm trying to import some packages like:
import pythonnet as clr
or
import yfinance as yf
but I get this message:
File "/var/folders/xs/1_m665393ql86dptnsrft5j80000gn/T/ipykernel_2232/2746914347.py", line 1, in <cell line: 1>
import pythonnet as clr
ModuleNotFoundError: No module named 'pythonnet'
I'm sure that I already installed these packages from the prompt. I'm facing the following issue with many packages so I suppose is it related to the working directory. This is the directory where -pip installs the package by default:
/Users/user_folder/opt/miniconda3/lib/python3.9/site-packages
I'd to understand if the issue is related to the directory and how to efficiently setup it.
Thank you in advance.
It may be that when you are running the script you are trying to run a different version of python.
When you run the pip install try python3 -m pip install instead.
If this doesn't work and you are using vscode you can simply click in the bottom right where it states the python interpreter and change what you are using.
If all of that fails to work, then sorry but that's all I can suggest with my current knowledge.
Related
This question already has answers here:
Installing python module within code
(12 answers)
How to install and import Python modules at runtime
(5 answers)
have python script check for missing modules and install if missing
(3 answers)
Closed 25 days ago.
I am currently finishing a school project making a game of Blackjack. I was using Replit to code and everything was fine. I recently tried to run it at home on Visual Studio Code but it said a module named "matplotlyb.pyplot" wasn't installed. I seem to understand now that you have to install it manually. When my project is done, it will be sent to an external examiner who will review it. Is there anyway to automatically download the module when the code is ran so the examiner won't have to?
Here's what I'm looking for:
import matplotlib.pyplot as plt
#something that installs it if not already installed
Best practice would be to include a requirements.txt file along with your project. The file should contain all the required packages in the format
packagename==version
You could also use the below to generate the requriements.txt
pip freeze > requirements.txt
pip freeze gives you the list of all installed Python modules along with the versions
To run your install all the dependencies, you could just use:
pip install -r requirements.txt
Hope this helps!
Simply wrap things in a try.. except and don't forget to use sys.executable to ensure that you will call the same pip associated with the current runtime.
import subprocess
import sys
# lazy import + install
try:
import matplotlib.pyplot as plt
except ModuleNotFoundError:
subprocess.check_call([sys.executable, "-m", "pip", "install", "matplotlib"])
This question already has answers here:
Importing installed package from script with the same name raises "AttributeError: module has no attribute" or an ImportError or NameError
(2 answers)
Closed 27 days ago.
I was trying to go through this code and constantly getting an error while importing import rioxarray as rio in python. The details of code in below.....
outfilename = os.path.join(output_folder,'Runoff_monthly_%s.%02s.%02s.tif' %(Date.strftime('%Y'), Date.strftime('%m'), '01'))
x = pr.rio.to_raster(outfilename)
print("IMD",ncfile['time'][i])
i+=1
the error i am getting in below....
File "rioxarray.py", line 26, in
from rioxarray.exceptions import (
ImportError: No module named exceptions
I am trying to solve this error while i am executing this code..
File "rioxarray.py", line 26, in
from rioxarray.exceptions import (
ImportError: No module named exceptions
This error maybe occured because the module rioxarray module is not being properly installed try reinstalling it in Command prompt using
pip install rioxarray
I have already checked the list and the "rioxarray" already installed in my environment.
1-The "rioxarray" package is not installed in your current environment: You can check if the package is installed by running "pip freeze" in your terminal and looking for the "rioxarray" package in the list. If it is not there, you can install it using "pip install rioxarray" url pypi.
2-The package version you have installed might not contain the "exceptions" module, you can check this by running pip show rioxarray, it will show you the package version, you can try updating the package using pip install --upgrade rioxarray.
This question already has answers here:
ImportError: No module named Crypto.Cipher
(33 answers)
Closed 2 years ago.
from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'
I am using PyCharm Community 2020.3 and Python 3.9.
This project previously compiled and ran, but I had to replace the computer and re-create my development environment, and at that point, the project failed as above.
I re-installed pycryptodome (see picture), but still getting error.
Something is causing the compiler to not take note of pycryptodome being there. Maybe something else is eclipsing it? Do I need to uninstall the library "crypto"?
I followed #madzohan link.
uninstall crypto. I had installed this because I followed PyCharm's suggestion.
uninstall pycryptodome
re-install pycryptodome
I was able to run my script no problem.
This question already has answers here:
How to deal with Kivy installing error in Python 3.8?
(5 answers)
Closed 2 years ago.
I installed kivy using the command line as instructed in the kivy.. except for last part which says "python -m pip install kivy==1.11.1" which i tried to install according to the instruction from the site...but its giving me error messages so after some research it seems like python 3.8 does no support kivy..but i did install it manually..the main issue now is that i can't import kivy to pycharm it gives me error message "ModuleNotFoundError: No module named 'kivy'"
please what is the correct way to import kivy to pycharm?
Ok, I just solved Your problem. Use this:
python -m pip install kivy[base] kivy_examples --pre --extra-index-url https://kivy.org/downloads/simple/
Write this on PyCharm terminal and you are done!
This question already has answers here:
How to use pip with Python 3.x alongside Python 2.x
(11 answers)
Closed 6 years ago.
I have installed qrcode package as pip install pyqrcode
Then when I open a python2.x shell and import it there, no errors are given. But when I open a python3 shell and try to import it there it says
ImportError: No module named 'qrcode'
I import it as import qrcode
When I installed the package with pip it says Downloading PyQRCode-1.2.tar.gz, meaning that it is installing the last version. But in pypi
it says that it also support python3.
What's the correct way to import it?
You need to download a separate package for python 3. pip3 install pyqrcode
Then you can access it. Of course you will need to install pip3 first if you don't have it.