python - ImportError: No module named 'scrapy' -
i new python using 3.6 on windows.
i have installed scrapy using anaconda:
> c:\users\user.name>conda install scrapy fetching package metadata > ............. solving package specifications: . > > # requested packages installed. > # packages in environment @ c:\users\user.name\appdata\local\continuum\anaconda3: > # scrapy 1.3.3 py36_0
however, when try import n python ide get:
importerror: no module named 'scrapy'
i tried pip confirmed requirements satisfied. have searched answer , think may because have installed 1 interpreter/environment , trying use in another.
although, not sure if correct, or how tackle it. first time have used anaconda (previously i'd been using pycharm , pip) i'm going spend time today getting grips it, appreciate if able point me in right direction!
try create new virtual environment in conda , install scrapy there, , don't forget activate environment. in pycharm can specify environment want use project in settings/yourproject/project interpreter.
Comments
Post a Comment