系统找不到指定的文件-已将SSD添加到新的C驱动器

时间:2019-11-18 13:30:44

标签: python windows python-2.7 path

我升级到win10,并在新的C:drive中添加了SSD。旧的C现在是G。 从那时起,我将无法运行任何python 2.7脚本。 有许多与此类似的问题,但找不到解决方案。 我再次将路径添加到C(为所有脚本制作了所有python文件的副本),然后将路径添加到了驻留在G上的某些脚本(这是旧的C:文件所在的位置)上。 我已经被困了好几天了。

一个代码示例是:

from pytube import YouTube

def downloadSong(url):
  yt = YouTube(str(url))
  video = yt.streams.first()
  downloadedVideo = video.download(output_path= "H:/PRODUCTORA/WEB/Videos", filename='bigdata')
  return downloadedVideo, yt.title

print downloadSong('https://www.youtube.com/watch?v=C-0jH7aAmnw')

我收到以下错误消息:

  

[错误2]系统找不到指定的文件   [cmd:[u'python',u'-u',u'G:\ Users \ UserName \ Video \ youtube.py']]   [dir:G:\ Users \ UserName \ Video]   [路径:C:\ Program Files(x86)\ Common Files \ Intel \ Shared Libraries \ redist \ intel64 \ compiler; C:\ Windows \ system32; C:\ Windows; C:\ Windows \ System32 \ Wbem; C:\ Windows \ System32 \ WindowsPowerShell \ v1.0 \; C:\ Windows \ System32 \ OpenSSH \; C:\ Program Files(x86)\ NVIDIA Corporation \ PhysX \ Common; C:\ Program Files \ NVIDIA Corporation \ NVIDIA NvDLISR;“ C:\ Users \ UserName \ AppData \ Local \ Microsoft \ WindowsApps; C:\ Python27“;]   [完成]

0 个答案:

没有答案