Python安装
到官网上下载Python,安装,IDEL学习起来挺好用,可是没有Numpy这些模块。如果下载Anaconda, 用cmd命令进入的Python倒是有numpy这些了,但是进入麻烦,而且黑乎乎的不习惯,不好用。应该有方法把这两个统一起来是吧?但是具体怎么操作请高手指点一二?曾经试过环境变量path编辑但是好像也没用 想简单的话推荐pycharm,包管理很方便,点两下的事儿而且可以支持使用你的多个版本python解析器的切换使用
最最重要的是
有安装教程【萌新使用 Anaconda3 必看】Anaconda3 基础使用手册
https://fishc.com.cn/thread-175906-1-1.html
(出处: 鱼C论坛)
【萌新使用 PyCharm 必看】PyCharm 基础使用手册
https://fishc.com.cn/thread-173240-1-1.html
(出处: 鱼C论坛)
没有模块就安装:python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
安装其他模块同理 楼上正解,用pip安装,需要什么模块就安装什么模块,ide也可以用vscode,轻且好看 你们说的可能对,但是初学小白看不懂:
>>> python -m pip install numpy -i
SyntaxError: invalid syntax
>>> Geeker_odd 发表于 2021-4-19 11:05
你们说的可能对,但是初学小白看不懂:
>>> python -m pip install numpy -i
SyntaxError: invalid synta ...
在cmd输入,不是在IDLE。后面的网址也要带 用CMD命令进去,还是不行啊:
C:\Users\amg>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul8 2019, 20:34:20) on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
File "<stdin>", line 1
python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
^
SyntaxError: invalid syntax
>>> python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
还是不行:
C:\Users\amg>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul8 2019, 20:34:20) on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
File "<stdin>", line 1
python -m pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
^
SyntaxError: invalid syntax
>>>
不知道哪里出问题 Geeker_odd 发表于 2021-4-19 13:52
还是不行:
C:%users\amg>python
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul8 2019, 20:34:20)
你要回复我,不然我没提醒。
你在cmd不要输入python,不需要进去python交互模式,直接输入安装命令就行了。
如果你之前安装过Anaconda3,那你要先进去系统的环境变量Path设置中,把Anaconda3的环境变量移到你自己安装的Python路径的下面。 hrp 发表于 2021-4-19 21:36
你要回复我,不然我没提醒。
你在cmd不要输入python,不需要进去python交互模式,直接输入安装命令就 ...
非常感谢!膜拜高手!
页:
[1]