Installation

Python 錯誤並顯示“您必須指定兩個命令行參數”

  • February 14, 2020

我為 Python 安裝了 anaconda。當我啟動 python 並嘗試導入包時,就會發生這種情況。

Python 3.7.6 (default, Jan  8 2020, 13:42:34) 
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> import pandas as pd
Error: You must specify two command line arguments

此資訊可能有用

(base) MAC:Fri Feb 14:09:32:~> python --version
Python 3.7.6
(base) MAC:Fri Feb 14:09:32:~> conda --version
conda 4.8.2
(base) MAC:Fri Feb 14:09:32:~> 

有沒有其他人看過這個?

這就是發生的事情。在我的主目錄中,我有一個名為的程序copy.py,,這是我用於教授 fileIO 的範例;它複製一個文件。如果使用者未能提供它們,它需要兩個命令行參數和錯誤。

顯然,有一個名為 copy 的模組pandas使用。我的 copy.py 在系統出現之前就被看到了,它造成了這個混亂。

謝謝@jordanm,您提供了幫助我看到這一點的提示。

引用自:https://serverfault.com/questions/1003091