Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
when I run code runner nothing at all happens.After running program
I tried multiple things but to o avail.
Install Python.
Install Python extension in VsCode Extension Store.
Use shortcuts "Ctrl+Shift+P" and type "Python: Select Interperter" to choose the python interpreter you installed before.
Create .py file and write print("HelloWorld").
Click Run Python File button:
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I recently deleted python 3.8.2 and installed python 3.9.
But when I use the python command on visual studio code, Microsoft shop opens and if I do something like python -v it prints Python.(It works well on console)
How can I fix this?
As per our discussion, the golden rule is always try to restart your computer first.
If that does not work, see how to fix this by setting alias.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
In win10 Qt environment, C++ program calls Python program how to package and distribute, can run this program on another machine without Python environment
You can use pyinstaller to make a .exe file out of your .py. And a .exe file can run on every windows Pc.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Due to the company policy, I cannot upgrade the vs code version. My vs code version is 1.39.2.
I want to the install python extension and got the error on title. I downloaded the vsix and tried to install it manually and got the same error.
Why not provide the old version of the extension to download?
I'm a developer on this extension. In the marketplace tab in VSCode you can right click the python extension and select "Install another version" when you do that it will pop up a list of all the old versions of the extension. This should allow you to go back and find the version that works for your VSCode.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Before you get confused, I am going to compile it with the auto-py-to-exe module after, its just the source code is in python. How do I do this?
If Python is not installed you wouldn't even be able to run a script to check if it's installed.
I'm pretty sure there isn't from inside the Python script. Because the interpreter isn't installed, so it'll never be able to understand HOW to execute the script at all.
You'll have to check outside in whatever is initiating the Python script and the compilation (bash script?) and do it there.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I want to convert a .py file into a multiplataform (Windows, Linux,..) onefile (without librarys or other folders) executable file for using it without a Python installation.
PyInstaller has the option to create a one-file application, just use the "-F" or "--onefile" argument when using it. I have never tried it on Linux though, on Windows I think it works.
PyInstaller Documentation at "What to generate"