sublimetext3

Virtualenvs in Sublime Text 4

Virtualenvs in Sublime Text 4 Question: I have the different virtualenv’s and to be able to specify which virtualenv to use with each project I used package Virtualenv (https://packagecontrol.io/packages/Virtualenv) in Sublime Text 3. That was so to the day when through the update I became the owner of the Sublime Text 4. The package Virtualenv …

Total answers: 2

How to use SublimeText within a venv?

How to use SublimeText within a venv? Question: I’ve been following the steps to a tutorial and (1) created a new directory for my project, (2) run C:UsersJohnSmithAppDataLocalProgramsPythonPython38python -m venv .venv in that directory to create the virtual environment, (3) run .venvScriptsactivate to activate it, (4) run to install python -m pip install flask which …

Total answers: 1

ModuleNotFoundError: No module named 'webdriver_manager' error even after installing webdrivermanager

ModuleNotFoundError: No module named 'webdriver_manager' error even after installing webdrivermanager Question: I’ve installed webdrivermanager on my windows-10 system C:Usersusername>pip install webdrivermanager Requirement already satisfied: webdrivermanager in c:pythonlibsite-packages (0.8.0) Requirement already satisfied: lxml in c:pythonlibsite-packages (from webdrivermanager) (4.5.1) Requirement already satisfied: requests in c:pythonlibsite-packages (from webdrivermanager) (2.20.1) Requirement already satisfied: tqdm in c:pythonlibsite-packages (from webdrivermanager) (4.46.1) …

Total answers: 13

How to properly use 3rd party dependencies with Sublime Text plugins?

How to properly use 3rd party dependencies with Sublime Text plugins? Question: I’m trying to write a plugin for Sublime Text 3. I have to use several third party packages in my code. I have managed to get the code working by manually copying the packages into /home/user/.config/sublime-text-3/Packages/User/, then I used relative imports to get …

Total answers: 1

CMD opens Windows Store when I type 'python'

CMD opens Windows Store when I type 'python' Question: Today when I tried to run simple code on Sublime Text 3, the following message appeared: Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 And when I type Python in CMD, it opens the Windows Store for me to download Python …

Total answers: 12

How to disable error syntax highlight Sublime Text 3

How to disable error syntax highlight Sublime Text 3 Question: I am using a language I made with a similar syntax to python, and I wanted to use python syntax highlighting for my language as well. The only problem is that my language uses curly brackets rather then : and indents. So some times when …

Total answers: 2

Function list in Sublime Text 3

Function list in Sublime Text 3 Question: Please help me with this issue. How can I display a list of functions like. these ones: When I press tab or ctrl + space I only get a list with words which I’ve used in the file but not list with functions. I use Python syntax Will …

Total answers: 3

How to use sublime 3 jinja2 highlighter

How to use sublime 3 jinja2 highlighter Question: I have a problem with jinja2 highlighter in sublime 3.All the files associated with .html extensions don’t recognize jinja templates blocks..I searched the web but the only solution I found is to make a .jinja.html custom extension..anyone got any idea how to solve this?..This is the plugin …

Total answers: 3

Change Python version for evaluating file with SublimREPL plugin

Change Python version for evaluating file with SublimREPL plugin Question: I am using Sublim Text 3 on Mac OS X El Capitan. What I need to do is to evaluate a Python file within Sublime Text 3. I have installed Package Control and then SublimREPL plugins. I have set up a 2 rows layout (View …

Total answers: 1