Instalar pipreqs para generar el requirements.txt sólo con los paquetes que importamos en el código:
pip install pipreqs
Ver pipreqs
Probar este Dockerfile:
app/Dockerfile
Instalar pipreqs para generar el requirements.txt sólo con los paquetes que importamos en el código:
pip install pipreqs
Ver pipreqs
Probar este Dockerfile:
app/Dockerfile
Instalar conda (miniconda) en Ubuntu:
Tener en cuenta que hay que hay instalar jupyter notebook en el env base, y encada sub env hay que instalar ipykernel
.
Una vez ejecutado jupyter notebook en el env base, desde jupyter, ir a Kernel/Change Kernel, y ahi cambiar el env.
ffmpeg -i Input.mp4 -filter:v minterpolate=fps=120:mi_mode=mci:mc_mode=aobmc:me_mode=bidir:me=epzs:vsbmc=1 Output.mp4
Fuente: Shotcut Forum
Primero probar:
sudo rmmod btusb
sudo modprobe btusb
Fuente: AskUbuntu
Si no funciona, continuar con:
sudo apt-get purge pulseaudio
Fuente: MakerByter
Estructura del directorio CARPETA:
Fuente: AskUbuntu
tracker reset -r
sudo nano /etc/modprobe.d/alsa-base.conf
Agregar:
options snd-hda-intel power_save=0 power_save_controller=N
Creamos un nuevo repositorio en https://github.com. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a crear repositorio y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto.
Nos vamos a la carpeta del proyecto y ejecutamos estos comandos.
git init
git add .
I have found that my Ubuntu Desktop machine will keep pausing/freezing whenever I am transferring a large amount of data to my NFS. Others have experienced this issue when transferring files to a USB stick.
It appears that this has to do with having a very large cache of "dirty files" being held, and when that cache gets too full, your system will "pause" whilst it ensures all that data is actually written to disk. Thus to "fix" this issue, you can reduce your cache size so your system doesn't get overwhelmed to the point where it becomes unusable.
You can implement this immediately with the following
sudo echo $((16*1024*1024)) | sudo tee /proc/sys/vm/dirty_background_bytes
sudo echo $((16*1024*1024)) | sudo tee /proc/sys/vm/dirty_bytes
... however, you would need to run that every time your system reboots. To resolve this issue across reboots, you may wish to add this to your /etc/rc.local file.