Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Silent/ Quiet install/ uninstall #586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
lzytniak opened this issue Jan 4, 2018 · 1 comment
Closed

Silent/ Quiet install/ uninstall #586

lzytniak opened this issue Jan 4, 2018 · 1 comment
Labels
Procedure Procedure

Comments

@lzytniak
Copy link

lzytniak commented Jan 4, 2018

I am using command:
WinPython-32bit-3.3.2.1.exe /S /D=C:\dest_dir

How to silent uninstall winpython?
How to install selected modules from command line?
Are there some more attributes e.g. to install (silent) for all users?

@stonebig
Copy link
Contributor

stonebig commented Jan 4, 2018

uninstall:

rmdir /S /Q  C:\dest_dir

remove package sqlite_bro (for example):

pip uninstall --y sqlite_bro

install (silent) for all users?
That's not a suggested feature, unless everyone trust everyone in your context:

  • install it on a shared directory.
  • make user settings separated by removing all the "#" character in the default settings\winpython.ini file as follow:
    BEFORE:
[debug]
state = disabled
[environment]
#HOME = %HOMEDRIVE%%HOMEPATH%\Documents\WinPython%WINPYVER%
#JUPYTER_DATA_DIR = %HOME%
#WINPYWORKDIR = %HOMEDRIVE%%HOMEPATH%\Documents\WinPython%WINPYVER%\Notebooks

AFTER:

[debug]
state = disabled
[environment]
HOME = %HOMEDRIVE%%HOMEPATH%\Documents\WinPython%WINPYVER%
JUPYTER_DATA_DIR = %HOME%
WINPYWORKDIR = %HOMEDRIVE%%HOMEPATH%\Documents\WinPython%WINPYVER%\Notebooks

... with all the Jupyterlab story, maybe this procedure is no longer valid/sufficient, and a fully separated winpython copy per user account the best solution.
(duplicate N times your reference WinPython directory)

@stonebig stonebig added the Procedure Procedure label May 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Procedure Procedure
Projects
None yet
Development

No branches or pull requests

2 participants