OSError:[Errno 2] Ubuntu 16.04 上没有该文件或目录

OSError:[Errno 2] Ubuntu 16.04 上没有该文件或目录

使用 Ubuntu,我尝试使用这个代码片段中的 scikit-learn 示例:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" Examples of reading texts files and classifying them
"""
from __future__ import division
import datetime
import sklearn.datasets

time1 = datetime.datetime.now()
##from sklearn.datasets import fetch_20newsgroups
######## Reading text files
rootPath = r"/Home/web2py/corpus/20news-18828/"

但是,我收到了这个错误:

File "/usr/local/lib/python2.7/dist-packages/sklearn/datasets/base.py", line 201, in load_files
    folders = [f for f in sorted(listdir(container_path))
OSError: [Errno 2] No such file or directory: '/Home/web2py/corpus/20news-18828/

我对 Ubuntu 和 scikit-learn 还很陌生。可能存在什么问题/错误?如何解决?

答案1

 OSError: [Errno 2] No such file or directory: '/Home/web2py/corpus/20news-18828/

我对 Ubuntu 和 scikit-learn 还很陌生。可能存在什么问题/错误?如何解决?

如果这是您的主目录,则会出现错误:/Home/。应该是/home/。Linux 既关心小写字母也关心大写字母。我们不会像其他一些操作系统那样歧视字母 (:) )

相关内容