https://stackoverflow.com/questions/40060353/not-able-to-install-packages-in-pycharm

 

Not able to install packages in Pycharm

I have pycharm community edition(latest stable build) installed on my Ubuntu 16.04 LTS, I am not able to install packages via pycharm, was able to install them before. I can install the packages v...

stackoverflow.com

 

 

17

I have got a solution, i reffered to https://youtrack.jetbrains.com/issue/PY-20081#u=1468410176856.

Here they have tried to add https://pypi.python.org/pypi as a repository.

To add it as a repository,

1.) Go to Settings 2.) Project interpreter 3.) Click the + sign on top right edge 4.) Go to manage repositories, 5.) Press the + Sign, then add https://pypi.python.org/pypi 6.) Press Ok

Now all the packages should load.

Thanks Hami Torun & Simon, I was able to solve it by luck.

 

 

repository에 저 링크 입력해주면 됨!

 

pip버전 문제인줄 알았는데.. 

근데 저 링크는 뭐지

'programing > Python' 카테고리의 다른 글

윈도우 pandas 설치법  (0) 2018.06.18
Python 기초 - type()  (0) 2018.04.09
Python 기초 - input()  (0) 2018.04.09
Python 기초 - print()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09

cmd창에서 파이썬 설치된 폴더 - Scripts 폴더로 이동한다.

pip install pandas 명령어 입력하면 끝

'programing > Python' 카테고리의 다른 글

Pycharm 패키지 설치 안될 때  (0) 2020.02.09
Python 기초 - type()  (0) 2018.04.09
Python 기초 - input()  (0) 2018.04.09
Python 기초 - print()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09

#type()


>>> my_float = 1.2

>>>type(my_float) #변수, 객체의 타입을 알 수 있다

<class 'float'> #실수형 객체

'programing > Python' 카테고리의 다른 글

Pycharm 패키지 설치 안될 때  (0) 2020.02.09
윈도우 pandas 설치법  (0) 2018.06.18
Python 기초 - input()  (0) 2018.04.09
Python 기초 - print()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09

#input()


>>> input('이름을 입력하세요 : ') #입력 기다리는 것, 기본기능 아님

이름을 입력하세요 : 홍길동

'홍길동'


>>> age = input('당신의 나이는?')

당신의 나이는? 26

>>>age

'26'

'programing > Python' 카테고리의 다른 글

윈도우 pandas 설치법  (0) 2018.06.18
Python 기초 - type()  (0) 2018.04.09
Python 기초 - print()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09
Python 기초 - 문자열  (0) 2018.04.09

#print()


print('a')

print(1)

print(3*5)

print('aa', 3)

'programing > Python' 카테고리의 다른 글

Python 기초 - type()  (0) 2018.04.09
Python 기초 - input()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09
Python 기초 - 문자열  (0) 2018.04.09
Python 기초 - 숫자형/숫자형 연산  (0) 2018.04.09

#리스트

my_list = [3.14, 'a', True]

print(my_list)

[3.14, True, 'a']

'programing > Python' 카테고리의 다른 글

Python 기초 - input()  (0) 2018.04.09
Python 기초 - print()  (0) 2018.04.09
Python 기초 - 문자열  (0) 2018.04.09
Python 기초 - 숫자형/숫자형 연산  (0) 2018.04.09
웹 스크래핑 VS 웹 크롤링 차이점  (0) 2018.03.08

#문자열

my_var1 = 'Python'

my_var2 = "Python"

print(my_var1, my_var2) # Python Python

my_str = 'a'


#문자열 연산

+     #연결

*     #반복


alphabet = 'abcde'

print(alphabet[0]) #a

print(alphabet[3]) #d


my_str1 = 'a' + 'b' #ab

my_str2 = 'abc' * 2 #abcabc

'programing > Python' 카테고리의 다른 글

Python 기초 - print()  (0) 2018.04.09
Python 기초 - 리스트  (0) 2018.04.09
Python 기초 - 숫자형/숫자형 연산  (0) 2018.04.09
웹 스크래핑 VS 웹 크롤링 차이점  (0) 2018.03.08
셀레니움 설치하기  (0) 2018.03.07

#숫자형/숫자형 연산

my_num = 1

my_sum = 1 + 2

my_pwr = 3 ** 2 #3의 2제곱=9

my_quo = 7 // 3 #몫=2

my_rem = 7 % 3 #나머지=1


count = 0

count += 1 #1

count -= 1 #0

count *= 2 #0

print(count) #0

'programing > Python' 카테고리의 다른 글

Python 기초 - 리스트  (0) 2018.04.09
Python 기초 - 문자열  (0) 2018.04.09
웹 스크래핑 VS 웹 크롤링 차이점  (0) 2018.03.08
셀레니움 설치하기  (0) 2018.03.07
Anaconda Spyder - 랜덤으로 로또 번호 출력하기  (0) 2018.02.14

웹 스크래핑

웹 사이트의 원하는 부분을 자동으로 추출 및 수집하는 것


웹 크롤링

자동화 봇인 웹 크롤러가 정해진 규칙에 따라 복수 개의 웹 페이지를 브라우징 하는 것

cmd를 관리자 권한으로 열어서


파이썬 Scripts 폴더로 이동한다.

(C:\Program Files\Python36\Scripts)


명령어는 이렇게.

cd C:\Program Files\Python36\Scripts


그리고 pip3 install selenium 을 치고 엔터를 누르면 자동 설치된다.

+ Recent posts