我在https://test.pypi.org中上传了一个简单的python包。当我通过点子下载并尝试运行时,我得到了FileNotFoundError: [Errno 2] File b'data/spam_collection.csv' does not exist: b'data/spam_collection.csv'
。之前我在打包时上传csv文件时遇到问题。在Could not upload csv file to test.pypi.org中查看我的问题。现在,使用pip安装软件包后,我运行pip show -f bigramspamclassifier
。我得到列出的csv文件。因此,我相信文件已经上传。我认为问题出在读取包中python文件中的文件。 SpamClassifier.py中的csv文件的路径应该是什么?
pip show -f bigramspamclassifier
Version: 0.0.3
Summary: A bigram approach for classifying Spam and Ham messages
Home-page: ######
Author: #####
Author-email: #######
Location: /home/kabilesh/PycharmProjects/TestPypl3/venv/lib/python3.6/site-packages
Requires: nltk, pandas
Required-by:
Files:
bigramspamclassifier-0.0.3.dist-info/INSTALLER
bigramspamclassifier-0.0.3.dist-info/LICENSE
bigramspamclassifier-0.0.3.dist-info/METADATA
bigramspamclassifier-0.0.3.dist-info/RECORD
bigramspamclassifier-0.0.3.dist-info/WHEEL
bigramspamclassifier-0.0.3.dist-info/top_level.txt
bigramspamclassifier/SpamClassifier.py
bigramspamclassifier/__init__.py
bigramspamclassifier/__pycache__/SpamClassifier.cpython-36.pyc
bigramspamclassifier/__pycache__/__init__.cpython-36.pyc
bigramspamclassifier/data/spam_collection.csv
我的项目文件结构
SpamClassifier.py文件中csv的路径#这是我想知道的
def classify(self):
fullCorpus = pd.read_csv("data/spam_collection.csv", sep="\t", header=None)
fullCorpus.columns = ["lable", "body_text"]
答案 0 :(得分:2)
您的脚本正在尝试从相对路径加载spam_collection.csv
文件。相对路径是相对于调用python
的位置加载的,而不是相对于源文件所在的位置不是的加载。
这意味着当您从bigramspamclassifier
目录运行模块时,它将起作用。但是,一旦pip
安装了模块,文件将不再与您在其中运行代码的位置有关(它将被埋在已安装的库中的某个位置)。
您可以执行以下操作来相对于源文件进行加载:
import os
this_dir, this_filename = os.path.split(__file__)
DATA_PATH = os.path.join(this_dir, "data", "spam_collection.csv")
fullCorpus = pd.read_csv(DATA_PATH, sep="\t", header=None)