Skip to content

Commit 9f21b1b

Browse files
authored
Merge pull request #3 from visualpython/devops
Devops v1.1.0
2 parents ea4e25d + c20c668 commit 9f21b1b

File tree

829 files changed

+135056
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

829 files changed

+135056
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ignore vscode intellisense compile option file
2+
jsconfig.json
3+
new/*

README.md

Lines changed: 78 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,78 @@
1-
# visualpython
2-
visualpython
1+
<!--
2+
#========================================================================
3+
# Filename : README.md
4+
# function : control visualpython for Mac/Linux
5+
# Creator : BlackLogic - LJ
6+
# version : 2.0
7+
# License : GPLv3
8+
# Date : 2020 07.27
9+
# Mdate : 2020 12.24
10+
#========================================================================
11+
-->
12+
13+
# 1. Install Package ( windows / Linux / Mac )
14+
### 1.1. requirements
15+
> - Python 3.x
16+
> - jupyter notebook or anaconda env <br>
17+
> _pip install jupyter_ <br>
18+
> or <br>
19+
> _python -m pip install --user jupyter_ <br>
20+
>
21+
> _pip3 install jupyter_ <br>
22+
> or <br>
23+
> _python3 -m pip install --user jupyter_ <br>
24+
25+
### 1.2. Install VisualPython package
26+
> **[pip / conda]** <br>
27+
> _pip install visualpython_
28+
29+
### 1.3. Optional package
30+
* jupyter_contrib_nbextensions<br>
31+
* Install to manage nbtextensions visually.
32+
>> **[pip]**<br>
33+
>> _pip install jupyter_contrib_nbextensions <br>_
34+
_jupyter contrib nbextension install --user_ <br>
35+
>> **[conda - anaconda env]** <br>
36+
> _conda install -c conda-forge jupyter_contrib_nbextensions_ <br>
37+
_jupyter contrib nbextension install --user_
38+
39+
# 2. Package controller for Linux/Mac/Windows
40+
### 2.1. VisualPython contoller info
41+
42+
> **usage: _visualpy [option]_** <br>
43+
44+
```
45+
optional arguments:
46+
-h, help - show this help message and exit
47+
-e, enable - enable VisualPython
48+
-d, disable - disable VisualPython
49+
-i, install - install VisualPython extensions
50+
-un, uninstall - uninstall VisualPython packages
51+
-up, upgrade - upgrade VisualPython Package
52+
-v, version - show VisualPython current version
53+
```
54+
55+
### 2.2. Activate VisualPython
56+
> _visualpy install_ <br>
57+
> or <br>
58+
> _visualpy -i_
59+
60+
### 2.3. Disable VisualPython
61+
> _visualpy disable_ <br>
62+
> or <br>
63+
> _visualpy -d_
64+
65+
### 2.4. Enable VisualPython extension
66+
> _visualpy enable_ <br>
67+
> or <br>
68+
> _visualpy -e_
69+
70+
### 2.5. Upgrade VisualPython package version
71+
> _visualpy upgrade_ <br>
72+
> or <br>
73+
> _visualpy -up_
74+
75+
### 2.6. Uninstall VisualPython package
76+
> _visualpy uninstall_ <br>
77+
> or <br>
78+
> _visualpy -un_

__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print('Visual Python')

bin/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print('Visual Python')

0 commit comments

Comments
 (0)