Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 스위프트
- 대전 자전거
- 대전
- dataset
- 노은
- swift html parser
- StreamReader
- 자전거
- EXIF data
- euc-kr
- 대전 업힐
- python
- html parser
- Exif
- 달력
- MDB
- kanna parser
- kanna html parser
- exifread
- Xcode
- 파이썬
- C#
- 유성
- mdb table 합치기
- swift
- insert into
- 딴지일보 자유게시판 파씽
- 엑셀
- file move
- VBA
Archives
- Today
- Total
Fly to the sky & Return
Ubuntu에서 아나콘다 설치하기 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
To use Anaconda on Ubuntu, you need to first install the Anaconda distribution. Here's a step-by-step guide:
- Download the Anaconda installation script from the Anaconda website: https://www.anaconda.com/products/distribution
- Open a terminal window and navigate to the directory where you saved the installation script.
- Make the script executable with the following command:
bashCopy code
chmod +x Anaconda3-*.sh
- Run the installation script with the following command:
Copy code
./Anaconda3-*.sh
- Follow the on-screen instructions to complete the installation process. By default, Anaconda will be installed in the /home/username/anaconda3 directory, where username is your user name.
- Update the PATH environment variable to include the Anaconda binary directory by adding the following line to your .bashrc file:
bashCopy code
export PATH="$HOME/anaconda3/bin:$PATH"
- Restart the terminal or run the following command to activate the changes:
bashCopy code
source ~/.bashrc
Once you've completed these steps, you should be able to use Anaconda on your Ubuntu system. You can start the Anaconda Navigator GUI by running the following command in a terminal:
Copy code
anaconda-navigator
Alternatively, you can use the Anaconda command-line interface by running the conda command in a terminal.
'프로그래밍 > 파이썬' 카테고리의 다른 글
[Pygame] Sudoku solution with backtracking (0) | 2023.09.24 |
---|---|
chatGPT api 이용 sample code (0) | 2023.02.05 |
Exfread를 이용한 EXIF data 추출 및 날짜별 폴더 생성해서 사진 옮기기 .....2 (0) | 2018.03.19 |
파이썬으로 엑셀 다루기.......2 엑셀로 달력을 만들어보자.. (0) | 2017.12.28 |
파이썬으로 Excel 다루기 ..........1 (0) | 2017.12.22 |