728x90
반응형

 

Windows 환경에서 Anaconda 가상환경을 생성하고, 

가상환경 내부에서 spyder 를 실행하는 방법은 아래와 같다. 

 

 

 

1. python 3.6 버전의 아나콘다 가상환경 생성

$ conda create -n myenv python=3.6

 

2. 가상환경 실행

$ activate myenv

 

3. 가상환경에 spyder 설치

$ conda install spyder

 

4. spyder 실행 

$ spyder

 

 


 

 

5. Spyder 에서 python 동작 환경 확인하기 

import sys
print(sys.executable)

 

결과는 아래와 같다.

print(sys.executable) 
C:\Users\name\Anaconda3\envs\myenv\pythonw.exe

 

 

 

6. Anaconda spyder 를 설치하였던 명령창에서 python 동작 환경 확인하기

$ python -c "import sys; print(sys.executable)"

 

5번과 6번을 비교해본다. 

 

 

 

 

참고자료 1 : https://stackoverflow.com/questions/30170468/how-to-run-spyder-in-virtual-environment

 

How to run Spyder in virtual environment?

I have been using Spyder installed with with Anaconda distribution which uses Python 2.7 as default. Currently I need to set up a development virtual environment with Python 3.4. Top two suggesti...

stackoverflow.com

 

참고자료 2 : https://github.com/spyder-ide/spyder/wiki/Working-with-packages-and-environments-in-Spyder

 

spyder-ide/spyder

Official repository for Spyder - The Scientific Python Development Environment - spyder-ide/spyder

github.com

 

728x90
반응형