文章讲述了在Windows中点击.py文件时遇到的命令行闪退问题,可能原因是Tcl库未正确安装。解决方法包括检查环境变量(TCL_LIBRARY和TK_LIBRARY)并将其添加至PythonLib目录。
摘要由CSDN通过智能技术生成
在使用py文件,点击.py文件首先出现命令行黑框然后闪退,在这种情况下,打开cmd命令行窗口(win+R而后输入cmd)而到.py文件的目录下运行输入指令<文件名>.py而后出现错误提示
。
[Python]This probably means that Tcl wasn’t installed properly.
1.检查一遍环境变量
点击进入之后,查看是否有 TCL_LIBRARY和 TK_LIBRARY
如若没有可以编辑配置,路径如下
2. 将这两个文件一起复制粘贴到Lib目录下
再次运行程序,问题解决!
[
Python
]This probably means that
Tcl
wasn‘t installed properly.(
Windows
10)(pyinstaller库)
原文链接,在文末发现了更简单的方法,所以这里只是先贴到这里
https://stackoverflow.com/questions/23730866/set-up-
python
-3-build-system-with-sublime-text-3
Tested successfully on Sublime Text 3. Assuming Sublime Tex...
今天在i
python
notebook(安装在虚拟环境
中
)
中
使用
pyplot画图的
时
候
出现
了
Tcl
erro,即在虚拟环境
中
调用
Tcl
出现
问题
。
- 解决办法:修改虚拟环境
中
的script/active.bat,添加如下两句
**set “
TCL
_LIBRARY=E:\
python
27\
tcl
\
tcl
8.5”
set “TK_LIBRARY=E:\
python
27\
tcl
\tk8.5”**
Traceback (most recent call last):
File ".\standardplot.py", line 5, in <module>
plt.plot(x, np.sin(x)) # Plot the sine of each x point
File "D:\workspace\
python
\HELLO\venv\lib\site-packages\matplotlib\pyplot...
D:/Anaconda3/
tcl
/
tcl
8.6/
init
.
tcl
: version conflict for package "
Tcl
": have 8.6.8, need exactly 8.6.9
version conflict for package "
Tcl
": have 8.6.8, need exactly 8.6.9
while executing
"package req...