Python doesn't find packages that are installed with Conda

Christian

I installed anaconda to C:\Users\chris\Anaconda3. When I type conda list it verifies that I have BeautifulSoup4 installed.

However when I start C:\Users\chris\Anaconda3\python.exe and try to import BeautifulSoup it doesn't work:

>>> import BeautifulSoup
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'BeautifulSoup'

When I'm in the Anaconda Navigator it also lists the package but when I try to start base(root)/Open with python I can't import my package. Neither can Spyder that I installed. What do I have to do, to fix this?

Druta Ruslan

i'm sorry but maybe you need to import in this way ?

from bs4 import BeautifulSoup

docs

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

NuGet doesn't show installed packages

From Dev

R can't find packages installed by travis

From Dev

Can't find installed packages in Lubuntu

From Dev

Can't find installed packages in Lubuntu

From Dev

R can't find packages installed by travis

From Dev

pip install doesn't find my highest installed version of python

From Dev

Python does not find packages installed without Anaconda

From Dev

Why doesn't a new Conda environment come with packages like numpy?

From Dev

Can't import installed packages in python

From Dev

Can't import installed packages in python

From Dev

Sudo apt-get update doesn't work - no packages installed

From Dev

Is there a way to find installed binary packages which don't have manpages?

From Dev

Sublime Text 3 : Can't find installed packages

From Dev

Why doesn't SaltStack pkg.installed command recognize installed packages on CentOS 6.6

From Dev

How to find manually installed packages?

From Dev

Python can't find my packages:

From Dev

Nuget VS 2015 Update 2 Doesn't Find All Packages

From Dev

Delphi 10.1 doesn't find the units added with an installed package

From Dev

Python show all installed packages

From Dev

Why pip search can't find certain packages while they can be installed via pip install anyway

From Dev

The `ssh-keygen` command is not installed in Arch Linux and can't find it in AUR or official packages

From Dev

Celery Supervisor Virtualenv can't find pip packages installed via github

From Dev

How to find docs for apt installed packages

From Dev

Find what packages are installed from a repository

From Dev

Find minimal equivalent of packages currently installed

From Dev

Find what packages are installed from a repository

From Dev

How to find docs for apt installed packages

From Dev

Find minimal equivalent of packages currently installed

From Dev

Find packages installed from a certain repository with aptitude

Related Related

  1. 1

    NuGet doesn't show installed packages

  2. 2

    R can't find packages installed by travis

  3. 3

    Can't find installed packages in Lubuntu

  4. 4

    Can't find installed packages in Lubuntu

  5. 5

    R can't find packages installed by travis

  6. 6

    pip install doesn't find my highest installed version of python

  7. 7

    Python does not find packages installed without Anaconda

  8. 8

    Why doesn't a new Conda environment come with packages like numpy?

  9. 9

    Can't import installed packages in python

  10. 10

    Can't import installed packages in python

  11. 11

    Sudo apt-get update doesn't work - no packages installed

  12. 12

    Is there a way to find installed binary packages which don't have manpages?

  13. 13

    Sublime Text 3 : Can't find installed packages

  14. 14

    Why doesn't SaltStack pkg.installed command recognize installed packages on CentOS 6.6

  15. 15

    How to find manually installed packages?

  16. 16

    Python can't find my packages:

  17. 17

    Nuget VS 2015 Update 2 Doesn't Find All Packages

  18. 18

    Delphi 10.1 doesn't find the units added with an installed package

  19. 19

    Python show all installed packages

  20. 20

    Why pip search can't find certain packages while they can be installed via pip install anyway

  21. 21

    The `ssh-keygen` command is not installed in Arch Linux and can't find it in AUR or official packages

  22. 22

    Celery Supervisor Virtualenv can't find pip packages installed via github

  23. 23

    How to find docs for apt installed packages

  24. 24

    Find what packages are installed from a repository

  25. 25

    Find minimal equivalent of packages currently installed

  26. 26

    Find what packages are installed from a repository

  27. 27

    How to find docs for apt installed packages

  28. 28

    Find minimal equivalent of packages currently installed

  29. 29

    Find packages installed from a certain repository with aptitude

HotTag

Archive