인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

okjjang031925's profile image
okjjang031925

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

[ Wait a minute! ] Download YouTube videos with Python and automate conversion to mp3!

에러가 떠요 ㅜㅜ

Written on

·

379

0

import pytube

yt = pytube.YouTube("https://www.youtube.com/watch?v=WH7xsW5Os10") #다운받을 동영상 URL 지정

vids= yt.streams.all()

print('vids',vids)

에러가 

Traceback (most recent call last):
  File "C:\section2\youtube-downloader.py", line 1, in <module>
    import pytube
  File "C:\Users\FS15020201\Anaconda3\envs\section2\lib\site-packages\pytube\__init__.py", line 13, in <module>
    from pytube.streams import Stream
  File "C:\Users\FS15020201\Anaconda3\envs\section2\lib\site-packages\pytube\streams.py", line 62
    self.is_otf: bool = stream["is_otf"]
               ^
SyntaxError: invalid syntax



분명 pytube 가 설치되어 있습니다.
버전 10.7.2
에러가뜹니다.웹-크롤링python

Answer 2

0

okjjang031925님의 프로필 이미지
okjjang031925
Questioner

conda list 로 확인해보면 

python 3.5.6 설치되어 있습니다 .

0

niceman님의 프로필 이미지
niceman
Instructor

안녕하세요.

파이썬 버전을 3.5 나 3.6 으로 맞추고 실행해보세요!

okjjang031925's profile image
okjjang031925

asked

Ask a question