问题描述
我目前正在学习一些python,我想将回形针第三方模块导入我的python文件。
i'm currently into learning a bit of python and i want to import the paperclip third party module into my python file.
是的,我已经安装了pyperclip模块与
pip install pyperclip
。
Yes, i already installed the pyperclip module withpip install pyperclip
.
如果我在桌面上创建文件,我得到一个错误,表示
回溯(最近一次调用最后一次):
文件test.py,第1行,< module>
import pyperclip
ImportError:没有名为pyperclip的模块
if i create a file on my desktop, i get an error which saysTraceback (most recent call last): File "test.py", line 1, in <module> import pyperclipImportError: No module named pyperclip
但是如果我放了test.py在我的python文件夹中,它运行。
However if i put the test.py in my python folder, it runs.
现在的问题是,有没有办法让我所有已安装的模块在全局范围内可用?我只想要我的文件,例如在我的桌面上运行它而没有导入问题。
The question now is, is there a way to make all my installed modules available on a global scope ? I just want to have my file e.g. on my Desktop and run it without having import issues.
谢谢。
问候
编辑:我正在使用Mac,也许这会导致问题
I'm working on a Mac, maybe this leads to the problem
推荐答案
发现问题。
pip install
自动使用 pip3.5安装
而 python test.py
没有使用 python3.5 test.py
The pip install
automatically used pip3.5 install
whereas python test.py
didn't use python3.5 test.py
谢谢@Bakurìu
有没有办法可以定义 python3.5
as python
?
Is there a way i can define python3.5
as python
?
这篇关于Python第三方模块全局导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!