Skip to content

Commit

Permalink
Merge pull request #2 from devinekask/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
SimonVanherweghe authored Mar 20, 2024
2 parents 43824db + 2018e79 commit 5a1a0c8
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 29 deletions.
21 changes: 12 additions & 9 deletions src/content/docs/general/03-vpype.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Check which python version you currently have installed.
python3 --version
```

This should be 3.10. Vpype doesn't work with python 3.11 at the time of writing. If you do have Python 3.10 installed, you could skip the pyenv install part, but it is recommended to use pyenv to manage your python versions anyhow.
This should be 3.12. Vpype doesn't work with python 3.13 at the time of writing. If you do have Python 3.12 installed, you could skip the pyenv install part, but it is recommended to use pyenv to manage your python versions anyhow.

Don't worry if you have got an error, we will install python 3.10 with pyenv.
Don't worry if you have got an error, we will install python 3.12 with pyenv.

### Python version manager

Expand All @@ -42,10 +42,10 @@ Reboot your terminal, you can do this with the following command or simply close
source ~/.zshrc
``````

Install python 3.10 with pyenv
Install python 3.12 with pyenv

```shell
pyenv install 3.10
pyenv install 3.12
```

Don't forget to [set up your shell environment](https://github.com/pyenv/pyenv#set-up-your-shell-environment-for-pyenv) for pyenv. For zsh, this is done by running the following lines:
Expand All @@ -56,16 +56,16 @@ echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.
echo 'eval "$(pyenv init -)"' >> ~/.zshrc
```
Reboot/reload your terminal. Check if the installation went well by running the following command. This should return a version number starting with 3.10
Reboot/reload your terminal. Check if the installation went well by running the following command. This should return a version number starting with 3.12
```shell
pyenv versions
```
optionally: set the global python version to 3.10
optionally: set the global python version to 3.12
```shell
pyenv global 3.10
pyenv global 3.12
```
### Pipx
Expand All @@ -75,15 +75,18 @@ We will install this via homebrew.
```shell
brew install pipx
```
```shell
pipx ensurepath
```
### Vpype
Now we can install vpype with pipx, we will specify to use python 3.10 for this
Now we can install vpype with pipx, we will specify to use python 3.12 for this
```shell
pipx install --python python3.10 "vpype[all]"
pipx install --python python3.12 "vpype[all]"
```
Vpype should now be installed and ready to use. You may check that it is fully functional by having a look at its version or displaying some random lines:
Expand Down
7 changes: 0 additions & 7 deletions src/content/docs/meetingnotes/20230918.md

This file was deleted.

6 changes: 0 additions & 6 deletions src/content/docs/meetingnotes/20231023.md

This file was deleted.

6 changes: 0 additions & 6 deletions src/content/docs/meetingnotes/20231106.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
---
title: 02/10/2023
title: Meetingnotes
---

## 06/11/2023

- Multi pass with a Sakura White Gelly Roll pen on black paper in honour of [Plot party](https://penplotterartwork.com/plotparty/)
- Chameleon changing color markers: <https://www.chameleonart.com>

## 23/10/2023

- Little embroidery demo
- A closer look at [@pavlovpulus](https://www.instagram.com/p/CyURVcqL3Zv/) his work

## 02/10/2023

- When it's Tech Tile Time, please limit your plots to 10-15min
- [ttt.devine.be](https://ttt.devine.be) is the shortcut ;-)
- Helmut Plotti is still down, sorry
Expand All @@ -13,3 +25,9 @@ title: 02/10/2023
- [6-11 November Plot Party](https://penplotterartwork.com/plotparty/)
- Discovered [DrawingBotV3](https://github.com/SonarSonic/DrawingBotV3/) an (impressive) free tool to convert images to vector files
- It would be nice to have an explanation how to export SVG's from p5.js.

## 18/09/2023

- Welcome :-)
- Helmut Plotti is down, but you can connect directly to the mini plotter via USB
- [Spiral Betty](https://spiralbetty.com/) was brought to our attention.
10 changes: 10 additions & 0 deletions src/content/docs/plotter/04-paint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Paint with the plotter
description: A guide to paint with the plotter.
---

## Preparation

- Prepare your artwork: group all the paths into their specific color layer.
- Install [Vpype](../general/03-vpype.md)
- Use this script [https://gist.github.com/SimonVanherweghe/fd741b90fa4063c222b690a42d3d171a] to implement the dipping pattern

0 comments on commit 5a1a0c8

Please sign in to comment.