我在Python文件中调用pip
命令。我目前正在测试一个简单的下载。
import pip
directory = 'C:/Users/me/Documents/tests'
package = 'psycopg2'
arguments = ['--only-binary=:all:', '--no-deps', '--platform',
'manylinux1_x86_64', '--implementation', 'cp',
'--abi', 'cp27mu', '--dest', directory, package]
def download():
pip.main(['download'] + arguments)
download()
它成功下载了它,但我无法在目录中看到该文件。如果我再次运行它,它甚至会说:
File was already downloaded c:\users\me\documents\tests\psycopg2-2.7.3.2-cp27-cp27mu-manylinux1_x86_64.whl
修改
当我尝试更改目录并重新下载时,我收到此消息:
Using cached psycopg2-2.7.3.2-cp27-cp27mu-manylinux1_x86_64.whl
听起来它将它保存在某种临时目录而不是指定的目录中?
答案 0 :(得分:0)
所以我今天早上打开了目录,运行程序后2天,找到里面的文件。我重新运行程序,它工作得很好......
我想连电脑都需要周末才能放松。