2017-04-03 16 views
2

私はまだコーディングに新しいスーパーです!オンラインチュートリアルから勉強しようとしていますが、私は最初のステップに固執しているようです!私はbs4をインストールしたと思いますが、python3には表示されません。間違った場所にインストールされていますか?ModuleNotFoundError: 'bs4'という名前のモジュールはありません

robbie$ sudo -H pip install bs4 
Requirement already satisfied: bs4 in /Library/Python/2.7/site-packages 
Requirement already satisfied: beautifulsoup4 in /Library/Python/2.7/site-packages (from bs4) 
Robbies-MBP:~ robbie$ python3 
Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import bs4 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ModuleNotFoundError: No module named 'bs4' 

は、任意の助けいただければ幸いです:)

+0

** python ** not ** python3 ** 'python2.7'にbs4をインストールするので –

答えて

6

Requirement already satisfied: bs4 in /Library/Python/2.7/site-packages

Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04)

あなたは、Python 2.7用のインストールモジュールを持っている、しかし、あなたが使用してとPython 3.6でimportにそれをしようとしています。

python3のようにpip3を使用する必要があります。

+0

ありがとう!私は 'pip3'を使ってみましたが、今は美しく動作します! – robbie777

+0

よろしくお願いします! – Vallentin

関連する問題