Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2ab3a7b

Browse files
visualpythongitbook-bot
authored andcommitted
GITBOOK-6: No subject
1 parent206cc06 commit2ab3a7b

File tree

9 files changed

+161
-1
lines changed

9 files changed

+161
-1
lines changed
4.36 MB
Loading
148 KB
Loading

‎docs/.gitbook/assets/image (1).png‎

21.8 KB
Loading

‎docs/.gitbook/assets/image.png‎

54.8 KB
Loading

‎docs/SUMMARY.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
*[Visual Python Manual](README.md)
44

5+
##GETTING STARTED
6+
7+
*[Welcome to Visual Python](getting-started/welcome-to-visual-python.md)
8+
*[How to install](getting-started/how-to-install.md)
9+
*[Installing FAQ](getting-started/installing-faq.md)
10+
511
##Data Analysis
612

713
*[1. Import](data-analysis/1.-import.md)

‎docs/data-analysis/4.-frame/4-3.-frame-sort.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44

5-
<figure><imgsrc="../../.gitbook/assets/image (1).png"alt=""><figcaption></figcaption></figure>
5+
<figure><imgsrc="../../.gitbook/assets/image (1) (1).png"alt=""><figcaption></figcaption></figure>
66

77
1._**Sort Index**_ sets the ascending/descending order of rows or columns.
88
2._**Sort Values**_ sorts based on the data entered in each column. You must select one or more columns.
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
description:This document will show how to install Visual Python.
3+
---
4+
5+
#How to install
6+
7+
{% hint style="info" %}
8+
**Visual Python** is an extension to[Jupyter Lab](https://jupyter.org/),[Jupyter Notebook](https://jupyter.org/) and[Google Colab](https://colab.research.google.com/), so you must have one of these environments installed already.&#x20;
9+
10+
***
11+
12+
If you prefer a simpler solution, consider[**Visual Python Desktop**](https://visualpython.ai/visualpython-desktop). It will establish an isolated python environment quickly and help you start Visual Python easily.
13+
{% endhint %}
14+
15+
###Pip Installation for Jupyter Lab
16+
17+
**1. Install package from**
18+
19+
```
20+
pip install jupyterlab-visualpython
21+
```
22+
23+
**2. Activate Visual Python on Jupyter Lab**
24+
25+
Click orange square button on the right side of the Jupyter Lab side bar.
26+
27+
###Pip Installation for Jupyter Notebook
28+
29+
**1. Install package from**
30+
31+
```
32+
pip install visualpython
33+
```
34+
35+
**2. Enable the package**
36+
37+
```
38+
visualpy install
39+
```
40+
41+
**3. Activate Visual Python on Jupyter Notebook**
42+
43+
Click orange square button on the right side of the Jupyter Notebook menu.
44+
45+
**4. Package Control Info**
46+
47+
Version Check
48+
49+
```
50+
visualpy version
51+
```
52+
53+
Version Upgrade
54+
55+
```
56+
visualpy upgrade
57+
```
58+
59+
&#x20;Uninstall
60+
61+
```
62+
visualpy uninstall
63+
```
64+
65+
Help Menu
66+
67+
```
68+
visualpy help
69+
```
70+
71+
72+
73+
###Chrome extension Installation for Google Colab
74+
75+
**1. Install package from chrome web store**
76+
77+
{% embed url="https://chrome.google.com/webstore/detail/visual-python-for-colab/ccmkpknjfagaldcgidgcipbpdipfopob" %}
78+
Visual Python for Colab on chrome web store
79+
{% endembed %}
80+
81+
**2. Open Google Colab**
82+
83+
{% embed url="https://colab.research.google.com/" %}
84+
Google Colab Environment
85+
{% endembed %}
86+
87+
**3. Activate Visual Python on Google Colab**
88+
89+
Click orange square button on the top-right side of the browser.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
description:Frequently Asked Questions.
3+
---
4+
5+
#Installing FAQ
6+
7+
###Which web browsers does Visual Python support?
8+
9+
{% hint style="info" %}
10+
Visual Python may work on many up-to-date browsers but it is optimized for Chrome.
11+
{% endhint %}
12+
13+
###I installed Visual Python, but the orange button does not appear on my Jupyter Notebook.
14+
15+
This can happen if the you're using a Python version is not 3.x.&#x20;
16+
17+
1. Please upgrade to Python 3.x, or
18+
2. If you are using multiple versions of Python, specify the pip version as 3 using the following command:
19+
20+
**NOTE:** Please uninstall before reinstalling.&#x20;
21+
22+
```
23+
pip uninstall visualpython
24+
```
25+
26+
```
27+
visualpy install —pip3
28+
```
29+
30+
###How can I install Visual Python behind a corporate firewall?
31+
32+
If pip installation gives you SSLError, it can be solved using the following command:
33+
34+
```
35+
pip install visualpython --trusted-host pypi.org --trusted-host files.pythonhosted.org
36+
```
37+
38+
To upgrade Visual Python in the same environment, follow the steps below.
39+
40+
**1) Upgrade Visual Python package.**
41+
42+
```
43+
pip install visualpython --upgrade --trusted-host pypi.org --trusted-host files.pythonhosted.org
44+
```
45+
46+
**2) Enable the package.**
47+
48+
```
49+
visualpy install
50+
```
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#Welcome to Visual Python
2+
3+
**Visual Python** is a GUI-based Python code generator for data science.
4+
5+
**Visual Python** is an extension to**Jupyter Lab**,**Jupyter Notebook** and**Google Colab**.
6+
7+
**Visual Python** is an open source project started for students who struggle with coding during Python classes for data science.
8+
9+
<figure><imgsrc="../.gitbook/assets/Visual Python_2.2.8.gif"alt=""><figcaption><p>Visual Python 2.2.8 demo</p></figcaption></figure>
10+
11+
##Try Visual Python if you would like to
12+
13+
* manage big data with minimal coding skills.&#x20;
14+
* help students / business analysts / researchers to overcome learning barriers for Python.&#x20;
15+
* save & reuse repeatedly used codes(snippets).

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp