Pyenv CheetSheet
Install Pyenv itself Install relevant libraries Install pyenv and do settings Check version List Up available Pythons Update Python Version…
Install Pyenv itself Install relevant libraries Install pyenv and do settings Check version List Up available Pythons Update Python Version…
About You might sometimes feel like downloading large files, like datasets, late at night to avoid using up network resources.…
About I happened to have opportunity to upgrade ubuntu version 22 to 24, I noted how I commanded here. Update…
About Python’s multipledispatch is a library for dynamically dispatching (selecting) functions based on multiple argument types, allowing you to define…
About I upgraded the version of Cert-Manger. I left what I did here. Check Cert-Manager Version Image: quay.io/jetstack/cert-manager-controller:v1.9.1 prompt output…
About Because my microk8s version was bit old (1.25), I upgraded it. This is the note. Check Version Update to…
list all the available disks First, list all the available disks to see if the new HDD is recognized. This…
import matplotlib.pyplot as plt import numpy as np import matplotlib as mpl data = np.random.rand(100, 2) indices = np.arange(data.shape[0]) norm…
#!/bin/bash # ERRシグナルをキャッチしてエラーが発生したらループを抜ける trap 'break' ERR # リストの中の各要素に対して処理を行うforループ for item in item1 item2 item3 item4; do echo "Processing $item" #…
import matplotlib.pyplot as plt import numpy as np # サンプルデータを生成 x = np.linspace(0, 10, 100) y = np.sin(x) # プロット…