- In Windows:
Make sure WSL version is >= 0.67.6
wsl --version
* Uninstall Docker Desktop if installed previously.
- In Ubuntu (or any WSL Distro):
Make sure WSL version is >= 0.67.6
wsl --version
* Uninstall Docker Desktop if installed previously.
Can be used for streaming data (webcam or screen capture) from the Windows to WSL
Run from a WSL terminal
ip route list default | awk '{print $3}'
name: top2vec | |
channels: | |
- defaults | |
- conda-forge | |
dependencies: | |
- python ==3.8 | |
# - tensorflow ==2.2.0 # tensorflow_text 2.2.0 doesn't work! | |
# tf dependecies | |
- numpy <1.19.0,>=1.16.0 | |
- termcolor |
# No need for admin privileges. Working on Windows 10 2004 | |
# Save as ps1 file, right click, then select Run with PowerShell | |
# https://stackoverflow.com/questions/25369285/how-can-i-get-all-window-handles-by-a-process-in-powershell | |
# https://www.reddit.com/r/PowerShell/comments/5etxgq/make_the_touch_keyboard_windows_810_transparent/ | |
function Set-KBTransparent { | |
[CmdletBinding()] | |
param () |
Download and install the latest AviSynth+ (with vcredist)
https://github.com/AviSynth/AviSynthPlus/releases
Download the latest MvTools
https://github.com/pinterf/mvtools/releases
Extract x64
from the archive (DePan.dll, DePanEstimate.dll, mvtools2.dll) to C:\Program Files (x86)\AviSynth+\plugins64\
(adjust the avs script if avisynth is not installed in this directory)
name: tf | |
channels: | |
- conda-forge | |
- edj.david | |
dependencies: | |
- python=3.7 | |
- ipykernel | |
- numpy >=1.16,<2.0 | |
- scipy =1.4 | |
- gast =0.3.3 |
name: gsa | |
channels: | |
- defaults | |
- conda-forge | |
dependencies: | |
- autopep8 | |
- ipykernel | |
- pandas | |
- xlrd | |
- numpy |
Install jupyterthemes (https://github.com/dunovank/jupyter-themes)
conda install -c conda-forge jupyterthemes
Edit $(python -c 'import jupyterthemes as jt; print(jt.path[0]);')/layout/notebook.less
div#ipython_notebook { display: none; }
span.autosave_status { font-size: small; }
(i.e. remove display: none
)div.output_area img, div.output_area svg {background-color: wheat}