Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Final_Project_OPEN_SW
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Young Woo Kim
Final_Project_OPEN_SW
Commits
32bb7a54
Commit
32bb7a54
authored
4 years ago
by
Young Woo Kim
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
66812a60
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+8
-4
8 additions, 4 deletions
README.md
with
8 additions
and
4 deletions
README.md
+
8
−
4
View file @
32bb7a54
...
@@ -59,17 +59,21 @@ Pandas에서 사용하는 자료구조는 크게 두가지로 나뉩니다 첫
...
@@ -59,17 +59,21 @@ Pandas에서 사용하는 자료구조는 크게 두가지로 나뉩니다 첫
Window의 시작 버튼을 누르고, 명령 프롬프트(CMD)를 관리자 권한으로 실행한 뒤,
Window의 시작 버튼을 누르고, 명령 프롬프트(CMD)를 관리자 권한으로 실행한 뒤,
**pip install numpy**
**pip install numpy**
**pip install pandas**
를 입력합니다.
**pip install pandas**
를 입력합니다.
이후 파이썬을 실행해서(Window 시작화면에서 IDLE 검색한 뒤 실행)
이후 파이썬을 실행해서(Window 시작화면에서 IDLE 검색한 뒤 실행)
**
import numpy as np
**import numpy as np**
import pandas as pd
**
를 실행하고, 오류 없이 정상적을 실행되면 설치가 완료되어 쓸 수 있습니다.
**import pandas as pd**
를 실행하고, 오류 없이 정상적을 실행되면 설치가 완료되어 쓸 수 있습니다.
-
import numpy as np를 입력한뒤, RuntimeError:가 뜹니다.
-
import numpy as np를 입력한뒤, RuntimeError:가 뜹니다.
현재 numpy의 최신 버전이 윈도우 운영체제와 충돌하는 이슈가 있습니다.
현재 numpy의 최신 버전이 윈도우 운영체제와 충돌하는 이슈가 있습니다.
최신버전인 1.19.4 버전 대신,
최신버전인 1.19.4 버전 대신,
**
pip uninstall numpy
pip install numpy==1.19.3
**
을 명령 프롬프트 창에서 실행하시면 정상적으로 설치가 완료됩니다.
**pip uninstall numpy**
**pip install numpy==1.19.3**
을 명령 프롬프트 창에서 실행하시면 정상적으로 설치가 완료됩니다.
# Numpy 배워보기
# Numpy 배워보기
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment