1
A
回答
0
使用past模塊,它提供了一個實驗性翻譯包,以幫助在Python 3環境中導入和使用舊的Python 2模塊。
因此,與PIP
pip3 install twain --no-compile # to ignore SyntaxErrors
安裝你的包,然後用下面的代碼在您python3
代碼導入TWAIN:
from past import autotranslate
autotranslate(['twain'])
import twain
# use twain .......
+0
當我嘗試這個命令'pip3 install twain --no-compile'時,我得到如下消息:'Downloading/unpacking twain 找不到滿足要求的任何下載 正在清理... 全部找到tween 在C:\ Users \ PB \ pip \ pip.log'中存儲故障的調試日誌這是什麼意思? –
+0
請回答並完成安裝。 2016我們被困住了 – YumYumYum
相關問題
- 1. 在Python 3中安裝模塊
- 2. Python 2安裝Python 3模塊
- 3. Python 3 - send2trash模塊安裝錯誤
- 4. 安裝Python模塊
- 5. 安裝python模塊
- 6. 安裝Python模塊
- 7. PIP安裝不安裝Python模塊
- 8. 在安裝Python 3後安裝Python 2.7
- 9. 安裝MySQLdb的Python模塊
- 10. 安裝Python模塊錯誤
- 11. Python模塊安裝錯誤
- 12. 安裝Twitter的Python模塊
- 13. Python模塊Numpy安裝
- 14. 安裝基本Python模塊
- 15. Python不會安裝模塊?
- 16. 用Sypder安裝Python模塊
- 17. Pip安裝python模塊easy
- 18. Python模塊沒有安裝
- 19. 爲python安裝Sybase模塊
- 20. 安裝Python模塊openFlashChart
- 21. 如何安裝python模塊?
- 22. Python模塊安裝問題
- 23. Python dde模塊安裝
- 24. 安裝Python模塊六
- 25. 安裝Python模塊問題
- 26. 安裝python Mysql模塊
- 27. 安裝win32gui Python模塊
- 28. 安裝Python telnetlib模塊
- 29. Python的Pythonpath模塊安裝
- 30. 如何安裝Python模塊
你爲什麼不試試呢? –
請至少用python27回答並完成安裝。 2016我們卡住 – YumYumYum
@YumYumYum你可以使用[pytwain](https://github.com/denisenkom/pytwain)模塊爲python安裝twain模塊。 –