$ sudo dnf install R-devel;
Coloque a sua senha e depois tente instalar as coisas no seu R, normalmente.
version: "3.9" | |
services: | |
blackd: | |
restart: always | |
image: docker.io/pyfound/black | |
command: blackd --bind-host 0.0.0.0 --bind-port 45484 | |
ports: | |
- "45484:45484" |
Section "InputClass" | |
Identifier "system-keyboard" | |
MatchIsKeyboard "on" | |
Option "XkbLayout" "br" | |
Option "XkbOptions" "caps:swapescape" | |
EndSection |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init --path)" | |
eval "$(pyenv virtualenv-init -)" |
[Unit] | |
Description=Kickoff Minikube Cluster | |
After=docker.service | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/local/bin/minikube start | |
RemainAfterExit=true | |
ExecStop=/usr/local/bin/minikube stop | |
StandardOutput=journal |
## | |
## Manjaro Linux default mirrorlist | |
## Generated on 2021-09-16 11:44 | |
## | |
## Please use 'pacman-mirrors -f [NUMBER] [NUMBER]' to modify mirrorlist | |
## (Use 0 for all mirrors) | |
## | |
## Country : South_Korea | |
Server = https://mirror.d-tl.com/manjaro/testing/$repo/$arch |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# @Author: José Sánchez-Gallego ([email protected]); Jonhnatha Trigueiro ([email protected]) | |
# @Date: 2019-12-18 | |
# @Filename: create_setup.py | |
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) | |
# https://github.com/sdss/flicamera/blob/master/create_setup.py | |
# This is a temporary solution for the fact that pip install . fails with |
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
# In order to add your repository, change my_pypi for whatever you want | |
$ poetry config repositories.my_pypi http://localhost:8010/ | |
# Creating a default credential | |
$ poetry config http-basic.my_pypi <the_user_you_created> <your_password> | |
# In order to publish your package, just run this | |
$ poetry publish --repository my_pypi --build |
#!/bin/bash | |
which podman 2> /dev/null | |
if [ $? -eq 0 ]; then | |
CONTAINER_APP="podman"; | |
else | |
CONTAINER_APP="docker"; | |
fi |