简体   繁体   中英

No module named 'irisreader' in Geany

I have installed irisreader module using:

pip install irisreader

When I run python3 in terminal and import irisreader, it is ok (no error). But, when I run python3 in Geany, there is message: No module named 'irisreader'. I have setted build command in Geany: python3 "%f". But still error. So, what is wrong with Geany?

I try import irisreader in IDLE. But, still error.

I run MX Linux 21.1 ahs with xfce.

# 👇️ in a virtual environment or using Python 2
pip install your_package

# 👇️ for python 3 (could also be pip3.10 depending on your version)
pip3 install your_package

# 👇️ if you get permissions error
sudo pip3 install your_package

# 👇️ if you don't have pip in your PATH environment variable
python -m pip install your_package

# 👇️ for python 3 (could also be pip3.10 depending on your version)
python3 -m pip install your_package

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM