묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
miniconda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.shwget 을 불러오면--2018-03-28 22:53:11-- https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.shResolving repo.continuum.io (repo.continuum.io)... 104.16.18.10, 104.16.19.10, 2400:cb00:2048:1::6810:120a, ...Connecting to repo.continuum.io (repo.continuum.io)|104.16.18.10|:443... connected.ERROR: cannot verify repo.continuum.io's certificate, issued by ‘CN=COMODO RSA Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB’:Unable to locally verify the issuer's authority.To connect to repo.continuum.io insecurely, use `--no-check-certificate'.이런식으로 뜨는데 어떡하죠 ㅜㅜ
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
miniconda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.shwget 을 불러오면--2018-03-28 22:53:11-- https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.shResolving repo.continuum.io (repo.continuum.io)... 104.16.18.10, 104.16.19.10, 2400:cb00:2048:1::6810:120a, ...Connecting to repo.continuum.io (repo.continuum.io)|104.16.18.10|:443... connected.ERROR: cannot verify repo.continuum.io's certificate, issued by ‘CN=COMODO RSA Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB’:Unable to locally verify the issuer's authority.To connect to repo.continuum.io insecurely, use `--no-check-certificate'.이런식으로 뜨는데 어떡하죠 ㅜㅜ
-
미해결3dsmax 초급부터 전문가까지 - 한방에 끝내는 3dsmax 강좌
목마님 모델링할때 꼭 블루프린트가 필요한건가요?
자동차 만드셨을때처럼 그냥 처음부터 만드시는건 안되는거였는지 궁금하네요
-
미해결유니티 게임 개발 (Unity 2D) - 시작부터 배포까지
그림파일 어디서 구할 수 있나요?
그림파일 어디서 구할 수 있나요?
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
bash: ./submit.sh: Permission denied
과제 다하고서 제출하려는데gimminjaeui-MacBook-Pro:linux_mac mygamecom$ ./submit.sh [wdrs76557]-bash: ./submit.sh: Permission denied이런 응답이 나오면서 제출은 되지 않습니다. 전의 과제 제출이랑 똑같은 방식으로 했는데 안되서 다시 다운로드받아 시도해봤는데도 같은 결과입니다. backend나 다운로드 및 설치 필요한 것은 다 받은 상태입니다.(정확히 딱 저대로만 나옴. 다른 것 없음!)
-
미해결엑셀을 활용한 업무자동화 - 비전공자를 위한 엑셀 VBA 프로그래밍
강의자료 제공 요청드립니다.
강의자료 받아보고싶습니다.
-
미해결앱 12개를 만들며 배우는 Swift4 & iOS11 아이폰 iOS 개발 강좌
뷰디드로드에 URL 코드까지하고 실행시켰는데 계속 오류가뜨고 시뮬레이션이 실행이 안되요 도와주세요
appdelegate에서 오류가 뜨는데 뭘 어떻게 해야할지 모르겠어요 class AppDelegate: UIResponder, UIApplicationDelegate { Thread 1: signal SIGABRT
-
미해결앱 12개를 만들며 배우는 Swift4 & iOS11 아이폰 iOS 개발 강좌
강의에서 보시는 swift문서 어디서 보시는건가요?
강의에서 보시는 swift문서 어디서 보시는건가요?섹션1에서는 iBooks에서 보는걸 알려주셨는데거기서 보시지 않으신데요... 어디서 보는지 알려주세요
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
프로그래밍, 데이터 과학을 위한 파이썬 입문 강의자료 다운관련 질문드립니다.
공지를 보고 챕터1-파이썬 소개에서 '전체 수업 PDF 자료 다운로드'를 눌렀는데 사이트를 찾을 수 없다고 뜹니다ㅠㅠ 확인부탁드려요!
-
미해결파이썬 입문 및 웹 크롤링을 활용한 다양한 자동화 어플리케이션 제작하기
셀렉트 선택이 잘못되는건지 잘 안됩니다.
import sysimport iofrom bs4 import BeautifulSoupimport requestsimport urllib.parse as repimport urllib.request as reqimport ossys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding = 'utf-8')sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding = 'utf-8')#로그인 유저정보LOGIN_INFO = { 'user_id' : 'gulungse@gmail.com', 'user_pw' : 'rlawjdgh2358', 'user-submit' : rep.quote_plus('로그인'), 'user-cookie' : 1}#Session 생성 , with 구문안에서 유지with requests.Session() as s: login_req = s.post('https://www.inflearn.com/wp-login.php?redirect_to=https%3A%2F%2Fwww.inflearn.com%2F', data=LOGIN_INFO) #HTML 소스확인 #print('login_req',login_req.text) #Header 확인 #print('headers',login_req.headers) if login_req.status_code == 200 and login_req.ok: post_one = s.get('https://www.inflearn.com/members/gulungse/course/') post_one.raise_for_status() soup = BeautifulSoup(post_one.text, 'html.parser') #print(soup.prettify()) course = soup.select("ul.course-list > li > a > img") for i,z in enumerate(course,1): print(z) # fullFileName = os.path.join("/Users/jeongho/Documents/image_down",str(i)+'.jpg') # str(i) 는 넘버값이 정수로 넘어오기때문에 문자로 변환 # req.urlretrieve(z['src'],fullFileName)저는 아직 인프런에서 뱃지가 없어서 신청한 강좌의 이미지를 가져오려고 했는데요.신청한 강좌가 총4가지인데 이미지다운이 되질 않네요. ㅠ셀렉트 선택자부분을 봐주실수 있나요?처음에는 이미지부분을 크롬개발자도구에서 copy > copy selecltor 로 해서나온값을 넣었더니 하나밖에 안되더라고요. 부탁드립니다.아직도 이 부분이 어렵네요.
-
미해결파이썬 입문 및 웹 크롤링을 활용한 다양한 자동화 어플리케이션 제작하기
강좌 무난히 듣기에 필요한 파이썬 문법 좀 배우고 싶어요
변수는 할당값, 메소드는 . 붙여서 함수가 하는 옵션 이 정도 뜻은 강의 들어면서 대강은 알거 같은데요.모듈 라이브러리 차이? 리소스? 라던지 json 데이터 이런거는 잘 모르겠습니다. 강의 이해를 위한 책이나 강의 있으면 추천해주셨음 합니다.
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
go with flow - delete_a_list_element
과제 중에서 def delete_a_list_element에 대해 저는 제대로 한것 같은데 자꾸 none 결과값이 떠서 질문 올립니다. def delete_a_list_element(list_data, element_value):print(list_data)print(element_value)if element_value in list_data : list_data = list_data.remove(element_value) result = list_data return result print(result)else : result = 0 print(result)list_data = [1,2,3,4]element_value = 3a = delete_a_list_element(list_data, element_value)print(a)제 생각엔 이렇게 하면 [1,2,4]가 나올거라고 생각하는데 이리저리 바꿔봐도 none 만 나옵니다. 도와주세요...이것때문에 하루이틀 잡아먹어도 답이안나오네요 처음이여서 그런지
-
미해결웹, 앱 풀스택개발 Boot Camp - 입문부터 서비스 개발까지
선생님 깃허브 링크 입니다.
https://github.com/shinycoo/inflearn-ror-bootcamp-rn-2 / 섹션10 #모바일 APIhttps://github.com/shinycoo/inflearn-ror-bootcamp-rn-1 / 섹션9 #네트워크https://github.com/shinycoo/inflearn-ror-bootcamp-final / 섹션8 #검색 기능, 리뷰, 댓글 기능 마무리https://github.com/shinycoo/inflearn-ror-bootcamp-10 / 섹션8 #공통 스타일 적용https://github.com/shinycoo/inflearn-ror-bootcamp-9 / 섹션8 #페이지네이션 구현https://github.com/shinycoo/inflearn-ror-bootcamp-8 / 섹션8 #지도 API 활용하기https://github.com/shinycoo/inflearn-ror-bootcamp-7 / 섹션8 #파일 업로드 구현https://github.com/shinycoo/inflearn-ror-bootcamp-6 / 섹션8 #페이스북 로그인 구현https://github.com/shinycoo/inflearn-ror-bootcamp-5 / 섹션8 #역할 부여하기https://github.com/shinycoo/inflearn-ror-bootcamp-4 / 섹션8 #회원 서비스 구현 #5: Devise 로 회원서비스 구현https://github.com/shinycoo/inflearn-ror-bootcamp-3 / 섹션8 #회원서비스 구현 #4: 이메일 서비스https://github.com/shinycoo/inflearn-ror-bootcamp-2 / 섹션6 #인터렉티브 웹: Chart.jshttps://github.com/shinycoo/inflearn-ror-bootcamp-1 / 섹션4 #HTML/CSS 심화: Form 구현하기
-
미해결모두를 위한 딥러닝 - 기본적인 머신러닝과 딥러닝 강좌
rank가 3인 tensor을 실제로 많이 사용하나요?
[[ [1,2,3],[4,5,6]]] 이 rank3에 shape[2,1,3]이라고 강의에 나오는데2차원 배열을 넘어가니까 이해가 잘 안가더라구요 ㅠㅠ왜 shape가 [2,1,3]인지 설명 해주실수 있나요??
-
미해결파이썬 입문 및 웹 크롤링을 활용한 다양한 자동화 어플리케이션 제작하기
google에서 봇으로 인식하고, 크롤링이 안됩니다 ㅠㅠ.
import pandas_datareader.data as webimport datetimestart = datetime.datetime(2018,3,1)end = datetime.datetime(2018,3,1)gs = web.DataReader('KRX: KOSPI','google', start, end)print(gs)에러 HTML 파일 내용중 일부but your computer or network may be sending automated queries. To protect our users, we can\'t process your request right now.아무래도, 구글에서 저를 봇으로 인식하고, 요청을 거부하는거 같은데 해결책이 없을까요?위 코드는 예제를 그대로 작성한 코드입니다.
-
미해결밑바닥 부터 시작하는 머신러닝 입문
강의자료 질문합니다
안녕하세요.새로이 수강신청한 사람입니다.수강신청 이전에 문의한 결과 강의자료, PPT자료를 다운받을 수 있다고 했는데,강의자료PPT와 소스코드는 어디서 받을 수 있는지요??열심히 공부하겠습니다.감사합니다..
-
미해결프로그래밍, 데이터 과학을 위한 파이썬 입문
이렇게 짜면 어떠한지요??
print("구구단 몇단을 계산할까요?(1~9단)") user_input=int(input()) while (user_input != 0): ....if not (user_input>=1 and user_input<=9): ........print("1부터 9 사이의 값을 입력하세요") ........user_input=int(input()) ....else: ........print("구구단 "+str(user_input)+"단을 계산합니다.") ........for i in range(1,10): ............print(user_input,"X",i,"=",user_input*i) ........user_input=int(input("구구단 몇 단을 계산할까요?")) print("구구단 게임을 종료합니다.")
-
해결됨코어 자바스크립트
바인딩에 대한 이해
2-4. 메소드코드를 보고 왜 이러한 결과물이 나오는지에 대해서는 설명을 통해서 알겠는데 this 를 바인딩 한다는 것에서 바인딩 이라는 것을 어떻게 이해해야 좋을 지 알고싶습니다. 바인딩에 대해 조금 찾아보니 특정객체에서 실행되게끔 고정시키는 역할, 속성과 개체사이의 연관 이런 식으로 나오는데 애매하게 넘어가면 중요한 부분을 놓치고 가는 것 같아서 여쭤봅니다.
-
미해결초보부터 개발자 취업까지!! 실전 자바 강좌
scanner
package Java3gang;import java.util.Scanner;public class CalEx {public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int i = scanner.nextInt(); System.out.println("i를 3으로 나누어서 나머지가 0이면 사용자가 입력한 수 는 3의 배수 입니다."); System.out.println("i%3"+(i%3));}}에서 Scanner scanner가 오류가 났다는데 봐도 잘 모르겠어요
-
미해결실습 UI 개발로 배워보는 순수 javascript 와 VueJS 개발
export default 에러 발생
git 에서 받은 소스를 보면서 강의 수강중인데import SearchModel from '../models/SearchModel.js'하는 중에SearchModel.js 에서 export default에서 Uncaught SyntaxError: Unexpected token export 가 발생하네요