From 9f59899183d178f25ea8612f4b67f5de97edff18 Mon Sep 17 00:00:00 2001 From: Caleb15 Date: Tue, 5 Feb 2019 22:28:06 -0800 Subject: [PATCH] venv section no longer necessary with new pythonpath changes --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 718c3c3..ee11793 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ AREPL automatically evaluates python code in real-time as you type AREPL is availible for free on the vscode [marketplace](https://marketplace.visualstudio.com/items?itemName=almenon.arepl#overview) -### Useage +## Useage First, make sure you have [python 3](https://www.python.org/downloads/) installed. @@ -16,7 +16,7 @@ Open a python file and run AREPL through the command search or use a shortcut: control-shift-a / command-shift-a -#### Features +## Features * Real-time evaluation: no need to run - AREPL evaluates your code automatically. You can control this (or even turn it off) in the settings @@ -27,7 +27,8 @@ or use a shortcut: control-shift-a / command-shift-a * Settings: AREPL offers many settings to fit your user experience. Customize the look and feel, debounce time, python options, and more! -#### Misc + +## Misc **Dumping** @@ -108,11 +109,6 @@ print(x) # this number will not change when editing below the #$save line Please note that \#\$save [does not work](https://github.com/Almenon/AREPL-vscode/issues/53) with certain types, like generators. If #$save fails in pickling the code state [file an issue](https://github.com/Almenon/AREPL-vscode/issues) so I can look into it. -**VENV** - -To use you arepl with VENV you can set the AREPL.pythonPath setting to reference the location of your venv python. -You can use ${workspaceFolder} to reference the current workspace folder. - **Variable Representation** I have [overridden the display](https://github.com/Almenon/AREPL-backend/blob/master/python/customHandlers.py) of some types (like datetime) to be more readable to humans.