Python: can't open file 'setup.py': [Errno 2] No such file or directory. Directory Change does not remove error

偶尔善良 提交于 2019-12-11 19:24:18

问题


I am trying to install pymysql to a windows 8 machine and have been having trouble with the installation for python 3.3 I got the mython-mysql driver to work fine for 2.7 but this is giving me some issues so far I have been denied access which I fixed with

runas /savecred /user:Luke "python setup.py install" luke is an administrator profile and should have access but this prompts on a second window the following error:

Python: can't open file 'setup.py': [Errno 2] No such file or directory.

to fix this I prefaced the install command with:

cd C:\Python33\PyMySQL\py3k\

unfortunately this did not fix the problem and still receiving the same error message.

i have checked Python: setup.py missing: No such file or directory but it only said to change the directory which I have tried

Does anyone have any idea as to why this might be happening? The file is there. why can't it read or find it?


回答1:


Follow these steps in order to rectify this problem:

  1. Download tweepy and unzip it in Desktop: Download from this link
  2. Rename it tweepy
  3. Open command prompt and type "cd desktop" then "cd tweepy"
  4. Type "python setup.py install"


来源:https://stackoverflow.com/questions/17583771/python-cant-open-file-setup-py-errno-2-no-such-file-or-directory-directo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!