我正在尝试将 Python 模块 MoviePy 安装到我的 Raspberry Pi 上,以便与操作系统一起安装的 Python 3.2.3 一起使用。我已经尝试了所有可以找到的命令行命令以及某些单词的许多可能排列。
以下是下载说明。 https://zulko.github.io/moviepy/install.html
经过一番努力,我终于成功下载了pip并安装了moviepy,但它是Python 2.7版本。我找到了一个名为 pip3 的单独的东西并使用以下方法安装它:
sudo apt-get install python3-pip --fix-missing
它似乎是成功的。
最终我找到了一个适用于 Python 3.2 的命令: pip-3.2 install moviepy 但它给出了错误:
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement moviepy
No distributions at all found for moviepy
Storing complete log in /home/Pi/.pip/pip.log
我该怎么办?我对CLI一无所知...