Questions tagged [sublimerepl]

SublimeREPL is a plugin for Sublime Text that runs interactive interpreters from a number of languages within a normal tab. It also allows connecting to a remote interpreter (e.g. Clojure/Lein) though a telnet port. SublimeREPL has a built-in support for command history and transferring code from open buffers to the interpreters for evaluation.

SublimeREPL is a for that runs interactive interpreters (both local and remote) inside a regular Sublime tab or view. It has built-in support for over 30 languages, including basic operations ( and ).

NOTE: SublimeREPL is no longer under active development. It does work in , but some features such as IPython/Jupyter integration are no longer functional because of API changes. One alternative for SublimeREPL is the Terminus package.

Features


Useful Links

238 questions
0
votes
2 answers

Text input in SublimeREPL does not work

I am using the SublimeREPL package in Sublime Text 3 to create a compatibility calculator between two individuals. My program relies on user input as the main source of material, but every time I try to run a simple code that asks for a text input,…
Omar D.
  • 1
  • 1
0
votes
1 answer

SublimeREPL: MATLAB displaying inconsistent output for structures (macOS)

sublimeREPL: MATLAB seems appropriately configured, and will display output for matrices, tables, or even [1x1] structures. When I try to display the output for any structure larger than [1x1], however, I just get an inexplicable white block to the…
wem3
  • 1
  • 2
0
votes
0 answers

Using matplotlib in SublimeREPL : python interpreter stop fonctionning after "plt.show()"

I'm using sublime text 3 with REPL in python. My version of Python is python 3.5@64bits. It's not the Anaconda distribution, but a standalone version. I have been using pandas and numpy for a while without any troubles. I am having trouble plotting…
jugo
  • 161
  • 2
  • 10
0
votes
1 answer

Sublime uses Python 3, SublimeREPL uses Python 2.7. Huh?

Using MacOs 10.13. When I launch the following code in Sublime 3: import platform print(platform.python_version()) the result is 3.6.3, which is great. When I launch the same code in SublimeREPL, the result is 2.7.10 So,I think that SublimeREPL is…
HereAndNow
  • 13
  • 6
0
votes
1 answer

Popen subprocess does not work inside a SublimeREPL?

I use conda to create a Python 2.7 environment including the R package. If I open a Python session in a console, I can check that R is indeed installed with the Popen constructor: $ python >>> from subprocess import Popen, PIPE >>> proc =…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
0
votes
1 answer

Sublime REPL VirtualEnv No Window Console found

So I have installed on [my Windows 10]: Python3 Anaconda Distribution Sublime Text 3 Sublime REPL Sublime Virtualenv I am trying to get the SublimeREPL python - virtualenv to work. Currently having no luck. The virtualEnv Repl closes out when I…
Joshua Zastrow
  • 1,355
  • 4
  • 17
  • 32
0
votes
0 answers

"No Build System" when trying to run python3 code using REPL

I've been trying to set up my computer environment to start coding in python3. I started by installing package controller, then sublimeREPL. After creating the first build system following the steps answered in this question. I did the things…
kALiEN
  • 1
0
votes
1 answer

SublimeREPL - How to run current file in other languages?

SublimeREPL gives the option of running the current file in python but it doesn't give this option for other languages. Is there a way to configure it to run the current file in say PHP?
Dominic Fagan
  • 151
  • 2
  • 11
0
votes
1 answer

How do I keybind SublimeREPL to run Haskell interpeter?

I've been searching for the right command name to keybind to run Haskell Interpeter in Sublime 3. I'm trying to add to the Sublime key bindings - user and the code should look something like this: { "keys": ["alt+keypad2"], "command":…
0
votes
1 answer

Save file before running custom command in Sublime3

This question is similar to this one Is it possible to chain key binding commands in sublime text 2? Some years have passed since that question (and the answers given), and I'm using Sublime Text 3 (not 2), so I believe this new question is…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
0
votes
0 answers

View Environment functionality in REPL R for Sublimetext 3

I'm an R studio user looking into switching to SublimeText 3 with the REPL R package. So far so good but the major difference I see vs. Rstudio is the lack of an "environment" window that shows all the data objects being worked with. IE the list of…
0
votes
1 answer

Why does Sublime Text 3 allow comments in JSON configuration files?

Using comments in JSON configuration files in Sublime Text can make JSON objects unable to be decoded. Here is my story. I newly installed SublimeREPL plugin in my Sublime Text 3. Soon I discovered it ran Python2.7 instead of 3.5 in default, so I…
Naomi
  • 127
  • 10
0
votes
1 answer

Uninstall/Update R in El Capitan

I'm trying to update R from 3.2.2 (Fire safety) to 3.3.1 (Bug in your hair) on MacOS 10.11.15 (El Capitan). Initially I tried to use the R-3.3.1.pkg from CRAN, which allowed me to use the new version in R.app. However when trying to access R through…
Czeslaw
  • 153
  • 1
  • 9
0
votes
1 answer

How to run existing Clojure programme in Sublime REPL

I have setup sublime REPL(Sublime 2, MAC) and able to run small Clojure programs like (+ 2 2). I have created a small project using lein lein new app clojure-noob and I am able to run it via lein repl. And it loads the main class defined inside the…
shantanu
  • 1,748
  • 3
  • 19
  • 34
0
votes
1 answer

sublimeREPL can not import _ctypes

I'm trying to import pyperclip in a python REPL tab of sublime text 3, but I get the following error: Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for…
AXO
  • 8,198
  • 6
  • 62
  • 63