我试过这个success: True
x: array([ 3.64725445e-01, 1.02848541e-06, -1.86761721e+02,
9.52089296e-10, -1.30733205e+02, -1.25265418e+02,
5.87207967e-02, 2.51660557e-02, 3.36422990e+00,
5.18324506e-04, 8.17060628e+01, 4.87111630e-04,
6.53648502e+01, 6.53648502e+01, 6.19018302e-01,
1.54754576e-01])
:
pip install
我收到错误'SyntaxError:Invalid Syntax'。
我可以使用pip install https://github.com/rapptz/discord.py
从GitHub安装吗?
答案 0 :(得分:2)
这个包似乎只适用于python 3.x.所以只需输入以下命令:
sudo python3 -m pip install git+https://github.com/rapptz/discord.py
此命令的含义:
python3 -m
用于指定python版本。pip install git+https:[URL]
适用于git repos。pip install git+git:[URL]
或pip install --upgrade https:[URL]
。答案 1 :(得分:0)
pip
是python之外的命令行实用程序。
在终端上运行pip install https://github.com/rapptz/discord.py
,而不是在python REPL中运行。