Python Forum
Python can't find module installed in anaconda
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python can't find module installed in anaconda
#11
(Nov-07-2016, 02:49 PM)Blue Dog Wrote: Python as a long way to go be for it is user friendly, when is comes to install.
If you think python is bad try to link multiple libraries with c++, or using make files.

On my windows i have numerous python versions installed. I always have a 2.x version and a 3.x version to at least check if my programs run in both versions. But most of them are because i never removed them and installed the next minor updated one such as below. But each of them are independent python installs with their own separate pip and 3rd party libs installed. This is optional, but i usually change the exe name to the version such as python.exe -> python27.exe and append each to the PATH. 

C:\Python27
C:\Python33
C:\Python34
C:\Python35-32

Quote:so reinstalled the operating system
You dont need to reinstall the OS just to remove anaconda or python versions. You can just run the uninstallers from control panel to remove them.

EDIT:
I just saw this
Quote:.bashrc
so are you running in linux? 

Package managers make it uber simple for a 3rd party install for the most used libraries.  
for example the ubuntu repos has this 
Quote:
metulburr@ubuntu:~$ sudo apt-cache search python-couch
python-couchdb - library for working with Apache CouchDB
python-couchdbkit - Trying to improve couchdb experience in Python
and to install it would be with ubuntus package manager 
sudo apt-get install python-couchdb
If the library is not in the repos, you can just download the library 
https://pypi.python.org/pypi/CouchDB
and run the setup script
python3 setup.py install
where python3 is how you inoke your python3 interpreter.

For example:
Recommended Tutorials:
Reply


Messages In This Thread
RE: Python can't find module installed in anaconda - by metulburr - Nov-07-2016, 03:45 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Launcher (on Windows) only necessary when 2 or more Python versions installed? pstein 1 386 Feb-17-2024, 12:43 PM
Last Post: deanhystad
  Anaconda 2.4.2: The JupyterLab 3.5.3 fails to run the python code of the Geographical jamalnuman 0 368 Aug-23-2023, 07:48 AM
Last Post: jamalnuman
  can not import anaconda pandas module. PySpark pandas module is imported!! aupres 0 760 Aug-06-2023, 01:09 AM
Last Post: aupres
  Pip lists the module but python does not find it Dato 2 1,345 Apr-13-2023, 06:40 AM
Last Post: Dato
  ModuleNotFound but pip shows module installed biscotty666 2 1,615 Jul-14-2022, 05:17 PM
Last Post: Axel_Erfurt
  Installed versions of Python SamHobbs 5 2,632 Sep-02-2021, 02:28 PM
Last Post: jefsummers
  No module named 'pysolar' - even tough pysolar is installed - What am I doing wrong? Jghurt 5 4,349 May-08-2021, 07:03 PM
Last Post: Jghurt
  unable to find module in su mode? korenron 2 1,966 Jan-10-2021, 07:41 PM
Last Post: Gribouillis
  I seem to have two versions of python 3.7.9 installed miner_tom 7 4,568 Nov-22-2020, 06:42 PM
Last Post: miner_tom
  Cannot find module 'torch' ErnestTBass 6 3,721 Oct-13-2020, 05:33 PM
Last Post: ErnestTBass

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020