python報錯ERROR: Could not find a version that satisfies the requirement fcntl (from versions: none) ERROR: No matching distribution found for fcntl 語言筆記 python
這個錯誤提示表明pip無法從Python Package Index(PyPI)找到匹配您操作系統和Python版本的fcntl模塊。因爲fcntl模塊是Unix特有的模塊,它可能不支持您的操作系統或Python版本。如果您正在Windows上運行Python,則無法安裝fcntl模塊,因爲Wind…