Ubuntu : install Miniconda, Jupyter notebook

,

mkdir -p ~/miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
rm ~/miniconda3/miniconda.sh

Quick command line install
https://docs.anaconda.com/miniconda/install/#quick-command-line-install

$: python –version
Python 3.12.8

/home/zsolt/Python_projects/anaconda:
conda create –prefix /home/zsolt/Python_projects/anaconda/tensorflow1/env
conda activate /home/zsolt/Python_projects/anaconda/tensorflow1/env
conda deactivate
sudo apt install python3-pip
cd /home/zsolt/Python_projects/anaconda/tensorflow1/
install notebook: conda install jupyter
start: jupyter notebook

Install TensorFlow with pip
https://www.tensorflow.org/install/pip

python3 -m pip install 'tensorflow[and-cuda]'
# Verify the installation:
python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"

python -c “import tensorflow as tf; print(tf.config.list_physical_devices(‘GPU’))”

pip install --upgrade pip
pip install tensorflow[and-cuda]

Verify:
python3 -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"

####################################

cd /home/zsolt/Python_projects/anaconda/tensorflow1/

conda activate /home/zsolt/Python_projects/anaconda/tensorflow1/env

jupyter notebook

####################################

uninstall TensorFlow:
(ezzel töröltem /home/zsolt/miniconda3/ a duplán installált TensorFlow-t
pip uninstall tensorflow
pip uninstall tensorflow-gpu

#########################################
NEM így!

pip install tensorflow-hub

A Jupyter Notbook-ban futtatni, mert különben máshova telepíti:
!pip install tensorflow-hub

pptx merge

python-pptx info

Does python-pptx support saving a file as pdf?

python-pptx doesn’t support saving as PDF and it’s very unlikely it ever will. The reason is that saving as a PDF involves rendering the PowerPoint file (.pptx) and the focus of python-pptx is on reading and writing the .pptx file format.
https://stackoverflow.com/questions/26365330/does-python-pptx-support-saving-a-file-as-pdf

Is it possible to combine two or more powerpoints using python-pptx?
https://stackoverflow.com/questions/60849601/is-it-possible-to-combine-two-or-more-powerpoints-using-python-pptx

I was able to achieve this by using python and win32com.client. However, this doesn’t work quietly. What I mean is that it launches Microsoft PowerPoint and opens input files one by one, then copies all slides from an input file and pastes them to an output file in a loop.

https://stackoverflow.com/questions/46205450/how-can-i-combine-two-presentations-pptx-into-one-master-presentation/66752002#66752002