当前位置:   article > 正文

Win10复现github项目需要的工具_github上的代码能用jupyter运行嘛

github上的代码能用jupyter运行嘛

1 Win10复现github项目需要的工具

Win10用工具Git download代码

安装git

从官网https://git-scm.com/downloads下载恰当版本,一路下一步直到安装成功

利用git下载github代码

  1. 运行Git Bacth
  2. 输入git clone https://github.com/…
  3. 从C:\Users***找到download文件夹

复制与粘贴

Ctrl+insert 复制
Shift+insert 粘贴

更改目录

cd e:/documents/python
  • 1

2 Win10使用工具Wget下载

Wget安装

  1. 官网https://eternallybored.org/misc/wget/下载ZIP
    在这里插入图片描述
  2. 解压缩
  3. 添加环境变量(浏览直到包含wget.exe文件夹)
    在这里插入图片描述
    4.打开win10命令窗口,即cmd,切换到包含wget.exe的文件夹位置
    在这里插入图片描述
    若输入wget -V未报错,则说明安装成功

3 windows终端中类似于nohup的后台运行命令

终端中命令

start /min python test.py
  • 1

类似于linux中

nohup python test.py &
  • 1

4 打开jupyter更改为自此创建的虚拟环境

  1. 在Anaconda prompt命令窗口中activate你创造的那个新环境。
  2. 安装ipykernel
conda install ipykernel
  • 1
  1. 在虚拟环境中手动将kernel添加到jupyter中
python -m ipykernel install --user --name py27 --display-name "Python (py27)"
  • 1
  1. 打开jupyter则可以选择虚拟环境的kernel
    在这里插入图片描述
    注意有可能会出现”后台服务的连接没能建立, 我们会继续尝试重连, 请检出网络连接…还有服务配置.“的问题,查看终端(本人win10)的报错信息:
Replacing stale connection: a21cd7e8-9206-4292-95b9-02b1f3ad1c89:0ec59769adfe400881ffb1b7efa5f71b
  • 1

解决办法:

pip install --user --ignore-installed jupyter
  • 1

重新运行即可,查看当前所属环境

import sys
print(sys.executable)
  • 1
  • 2

在这里插入图片描述
完毕

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/388469
推荐阅读
相关标签
  

闽ICP备14008679号