interpreter Questions
6
Solved
I like IPython a lot for working with the python interpreter. However, I continually find myself typing exit to exit, and get prompted "Type exit() to exit."
I know I can type Ctrl-D to exit, but...
Arbitrate asked 6/10, 2009 at 19:45
6
Solved
I am wondering which path should be set in "Interpreter path" area in Run/Debug Configurations in IntelliJ, to complie and run bash script.
Using IntelliJ 15.0.3 on Windows 7
Kerseymere asked 25/2, 2016 at 12:58
4
I have played with PyCharm all day, now I have deleted all projects from the file system, nonetheless I still get old interpreters [invalid] that I have no way to remove, in some places mention the...
Tortuosity asked 16/1, 2023 at 0:53
6
I want to execute java commands interactively from shell: is there a way to do so?
Tidings asked 4/5, 2011 at 22:36
11
I've been trying to setup my Python workspace on Visual Studio Code but the software doesn't seem to pick up the fact that I have Python installed, and keeps telling me to install Python. I've trie...
Metre asked 6/8, 2022 at 22:12
5
Solved
import requests
from bs4 import BeautifulSoup
import openai
#write each line of nuclear.txt to a list
with open('nuclear.txt', 'r') as f:
lines = f.readlines()
#remove the newline character fro...
Flavio asked 4/11, 2022 at 1:37
5
Solved
Let's take Python as an example. If I am not mistaken, when you program in it, the computer first "translates" the code to C. Then again, from C to assembly. Assembly is written in machine code. (T...
Sell asked 17/3, 2012 at 20:59
7
I started using venvs on Visual Studio Code, and when I am trying to use pandas, by import pandas
it gives me this error
"Import "pandas" could not be resolved from source"
So...
Kindergartner asked 7/4, 2022 at 2:54
5
Solved
I use Pycharm, and whenever I move a project to another folder, it says "invalid python interpreter selected for the project". I think it happens because the path to venv has changed.
I t...
Fluidics asked 2/7, 2021 at 9:3
8
I want to use PyCharm, so I downloaded and installed it (v. 4.5, community edition). I had previously installed Python 3.5 64-bit from python.org (I'm using Windows 10).
To start using PyCharm, I n...
Scopolamine asked 28/9, 2015 at 21:23
9
Solved
Like lots of you guys on SO, I often write in several languages. And when it comes to planning stuff, (or even answering some SO questions), I actually think and write in some unspecified hybrid la...
Katheryn asked 13/9, 2010 at 20:45
5
When I try to run code in editor,it says that there is no available interpreters.Please,help.How can I solve the problem?
Acumen asked 24/9, 2015 at 18:25
10
Which interpreted languages pointer-free languages (IE: Python, Java, Perl, PHP, Ruby, Javascript, etc) have manual memory management? I don't recall ever hearing of one.
Isn't the major concern a...
Loment asked 25/1, 2010 at 16:51
5
Solved
Strange thing. I just can't use remote interpreters. I'm 100% sure I saw it before. WTF?
I have configured ssh deployment connection and vagrant box.
There is nothing interesting under more butt...
Anthracoid asked 11/5, 2016 at 10:13
7
Is there any C interpreter written in javascript or java ?
I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the value...
Falito asked 26/5, 2011 at 16:51
3
Solved
I'm using Jacoco to find the code coverage of unit tests with ANT but the report isn't generated and I get this error sequence:
[jacoco:report] Loading execution data file C:\JUnit\apache-ant-1.10...
Scintilla asked 27/6, 2017 at 9:4
4
Solved
How can I make a python script change itself?
To boil it down, I would like to have a python script (run.py)like this
a = 0
b = 1
print a + b
# do something here such that the first line of this sc...
According asked 22/9, 2016 at 15:43
3
I am just starting with Rust and was wondering: is a Rust interpreter? With an interpreter the Rust compiler would not need to compile all the source files every time it is invoked and would only i...
Finer asked 16/5, 2019 at 22:23
0
There are PEP-554 and PEP-684. Both are designed to support multiple interpreters on Thread level.
Does anyone know if these PEPs are implemented somewhere at least in experimental or pre-release v...
Shall asked 27/9, 2022 at 12:7
6
I am a fairly new Pycharm user switched from other IDEs recently.
One question I have is about the interactive python interpreter, which is the "window" I can type in variables to check them after...
Osmond asked 31/10, 2013 at 14:24
1
Since the rising popularity of JavaScript, I found it intriguing to hear (even during the same speech) either about JavaScript engine, or about JavaScript virtual machine, or JavaScript interpreter...
Gocart asked 1/6, 2016 at 16:32
3
Is is possible to compile and execute scala code as a string at runtime either in Scala or in Java?
My idea is to build a DSL using Scala then let Java programmers use the DSL inside Java.
I he...
Grackle asked 19/9, 2011 at 21:35
1
Solved
I'm currently going through Writing an Interpreter in Go when I came across this line in the testing unit for the lexer:
package lexer
import (
"testing"
"monkey/token"
)
...
Wien asked 17/7, 2022 at 1:54
3
Solved
At our company we love to write django driven applications and we also love to use react. Recently we thought about writing a component based templating engine for python where templates can be wri...
Mellott asked 12/6, 2019 at 13:57
5
Solved
Is there a good interactive interpreter for Java, similar to Scala's? When programming, I like to try small pieces of code to see if they work like I expect before plugging them in to my main progr...
Waggish asked 25/5, 2011 at 3:54
1 Next >
© 2022 - 2024 — McMap. All rights reserved.