当我尝试按命令安装我的包时:
pip install tv_sched_pars-0.1.macosx-10.6-universal.tar.gz
给我错误:
IOError: [Errno 2] No such file or directory: '/var/folders/5W/5WnKRhNyGe0O6x6IhEkbnE+++TI/-Tmp-/pip-dZHBRf-build/setup.py'
包裹由python setup.py bdist
然后在目录dist
中找到。
任何想法为什么我都能得到它?
我的包裹有:http://dl.dropbox.com/u/15842180/tv_sched_pars-0.1.macosx-10.6-universal.tar.gz
使用python setup.py install
安装非常顺利......
顺便说一下 - 我正在使用virtualenv
!
答案 0 :(得分:3)
您必须使用bdist_egg
或sdist
。只有那些可以通过pip / easy_install创建工件。