Activate python 3 environemnt in Anaconda with batch-file

后端 未结 1 1477
抹茶落季
抹茶落季 2021-01-03 01:54

Recently installed Anaconda (1.9) for my python project on win7

After installation, I built a python 3 support environment with instruction in this page. My next tas

相关标签:
1条回答
  • 2021-01-03 02:15

    I don't think you need a batch file. Assuming that Anaconda and CMD are on your path (which they should be), you can try this as an alternative (it is what I do):

    cmd "/c activate py3k && ipython --pylab"
    
    0 讨论(0)
提交回复
热议问题