美文网首页
从 Linux 流浪到 windows

从 Linux 流浪到 windows

作者: Blanchard | 来源:发表于2020-10-26 01:47 被阅读0次

    从 Linux 流浪到 windows

    cd ~

    cd %USERPROFILE%
    set HOME=%USERPROFILE%
    set PATH=%HOME%\bin;%PATH%
    

    如何 grep

    findstr "pattern1 pattern2" file.to.grep.txt
    

    python2 python3 共存

    官方下载你喜欢的版本就好。然后才是我们的重点。
    把你的 python2 python3 目录都配置到环境变量里面,你想优先哪个就把哪个放在 PATH 的更靠前

    cd /d C:\python27
    copy python.exe python2.exe
    cd /d C:\python35
    copy python.exe python3.exe
    

    然后在你的 python 脚本开头这样写:

    #!python2
    

    wget

    当然首先你要有 python

    python -m pip install wget
    python -m wget https://www.jianshu.com/u/44092f1844ba
    

    相关文章

      网友评论

          本文标题:从 Linux 流浪到 windows

          本文链接:https://www.haomeiwen.com/subject/ovvomktx.html